[package]
edition = "2024"
rust-version = "1.85"
name = "pdfer_forms"
version = "0.1.0"
build = false
exclude = [
"benchmarks/target/",
"benchmarks/pdfs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust pypdf/PyPDF2-style AcroForm inspection and form filling compatibility layer"
readme = "README.md"
keywords = [
"pdf",
"forms",
"acroform",
"pypdf",
"pypdf2",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/clark-labs-inc/pdfer-forms-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "pdfer_forms"
path = "src/lib.rs"
[[example]]
name = "fill_and_flatten"
path = "examples/fill_and_flatten.rs"
[[example]]
name = "proof"
path = "examples/proof.rs"
[dependencies.lopdf]
version = "0.40"