diff options
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | Cargo.toml | 25 | ||||
| -rw-r--r-- | README.md | 9 | 
3 files changed, 15 insertions, 23 deletions
| @@ -282,8 +282,8 @@ dependencies = [  ]  [[package]] -name = "pdf_forms" -version = "0.1.0" +name = "pdf_form" +version = "0.2.0"  dependencies = [   "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",   "derive-error 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1,18 +1,13 @@  [package] -    name = "pdf_forms" -    version = "0.1.0" -    authors = ["Jake <jsandler18@gmail.com>", "Malte <voos.malte@gmail.com>", "Emulator000 <emulator@hotmail.it>"] -    description = "A library for programatically filling out pdf forms" -    repository = "https://github.com/Emulator000/pdf_form" -    edition = "2018" -    readme = "README.md" -    keywords = ["pdf_form", "pdf", "form", "forms", "field"] -    license = "MIT" -    exclude = [ -        ".idea", -    ] +name = "pdf_form" +version = "0.2.0" +authors = ["Jake <jsandler18@gmail.com>"] +readme = "README.md" +keywords = ["pdf", "form"] +description = "A library for programatically filling out pdf forms" +license = "MIT"  [dependencies] -    bitflags = "^1.2" -    derive-error = "^0.0.4" -    lopdf = "^0.25" +bitflags = "^1.2" +derive-error = "^0.0.4" +lopdf = "^0.25" @@ -1,10 +1,8 @@  # Fill PDF Forms -A library to programatically identify and fill out PDF forms. - -**WARNING**: This is a fork of the original "pdf_form" crate made by [jsandler18](https://github.com/jsandler18), including all improvements made by [malte-v](https://github.com/malte-v). +A library to programatically identify and fill out PDF forms  ## Example Code -Read a PDF and discover the form fields +* Read a PDF and discover the form fields  ```rust  extern crate pdf_form;  use pdf_form::{Form, FieldType}; @@ -19,8 +17,7 @@ for type in field_types {  };  ``` - -Write to the form fields +* Write to the form fields  ```rust  extern crate pdf_form;  use pdf_form::{Form, FieldState}; | 
