[package]
edition = "2021"
name = "pdfox"
version = "0.1.0"
authors = ["Samuel Azeez <samuel@example.com>"]
build = false
exclude = [
"target/",
"*.pdf",
"src/main_orig.rs",
"src/main_test.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust PDF library — create, parse, and render PDF documents with zero C dependencies"
homepage = "https://github.com/sazalo101/pdffox"
documentation = "https://docs.rs/pdfox"
readme = "README.md"
keywords = [
"pdf",
"document",
"render",
"parse",
"pure-rust",
]
categories = [
"encoding",
"parser-implementations",
"rendering",
"text-processing",
]
license = "MIT"
repository = "https://github.com/sazalo101/pdffox"
[lib]
name = "pdfox"
path = "src/lib.rs"
[[bin]]
name = "pdfox-demo"
path = "src/main.rs"
[dependencies.flate2]
version = "1.0"
[dev-dependencies]