[package]
name = "pdfluent-forms"
version = "1.0.0-beta.7"
edition = "2021"
license-file = "LICENSE"
readme = "README.md"
description = "AcroForm engine for PDF interactive forms."
repository = "https://github.com/pdfluent/examples"
homepage = "https://pdfluent.com"
documentation = "https://pdfluent.com/docs"
keywords = ["pdf", "forms", "acroform", "fields", "interactive"]
categories = ["parser-implementations"]
[dependencies]
pdf-syntax = { path = "../pdf-syntax", version = "=0.5.3" }
thiserror = { workspace = true }
log = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
lopdf = { package = "pdfluent-lopdf", path = "../lopdf", version = "=0.39.3" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
lopdf = { package = "pdfluent-lopdf", path = "../lopdf", default-features = false, features = ["wasm_js"], version = "=0.39.3" }
[dev-dependencies]