[package]
edition = "2024"
rust-version = "1.85"
name = "pdfer_forms"
version = "0.2.0"
authors = ["Clark Labs Inc."]
build = false
exclude = [
"benchmarks/target/",
"benchmarks/pdfs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast pure-Rust PDF form filling, AcroForm inspection, and document operations (merge, split, rotate, encrypt) — a pypdf / PyPDF2 compatibility layer."
homepage = "https://github.com/clark-labs-inc/pdfer-forms-rs"
documentation = "https://docs.rs/pdfer_forms"
readme = "README.md"
keywords = [
"pdf",
"acroform",
"forms",
"merge",
"encrypt",
]
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"