[package]
edition = "2021"
name = "pdfboss-render"
version = "1.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PDF rendering in pure Rust: rasterize pages to RGBA pixmaps and PNG, extract embedded images"
readme = "README.md"
keywords = [
"pdf",
"rendering",
"rasterizer",
"pdf-to-png",
"png",
]
categories = [
"rendering",
"multimedia::images",
"graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/4thel00z/pdfboss"
[features]
substitute-fonts = []
[lib]
name = "pdfboss_render"
path = "src/lib.rs"
[[test]]
name = "extract_page"
path = "tests/extract_page.rs"
[[test]]
name = "formats"
path = "tests/formats.rs"
[[test]]
name = "icc_corpus"
path = "tests/icc_corpus.rs"
[[test]]
name = "icc_page"
path = "tests/icc_page.rs"
[[test]]
name = "jbig2_page"
path = "tests/jbig2_page.rs"
[[test]]
name = "jpeg"
path = "tests/jpeg.rs"
[[test]]
name = "jpx_page"
path = "tests/jpx_page.rs"
[[test]]
name = "png_compression"
path = "tests/png_compression.rs"
[[test]]
name = "render_identity"
path = "tests/render_identity.rs"
[[test]]
name = "separation_page"
path = "tests/separation_page.rs"
[[bench]]
name = "render"
path = "benches/render.rs"
harness = false
[[bench]]
name = "tiers"
path = "benches/tiers.rs"
harness = false
[dependencies.jpeg-decoder]
version = "0.3"
[dependencies.pdfboss-core]
version = "1.2.0"
[dependencies.pdfboss-encoding]
version = "1.2.0"
[dependencies.pdfboss-icc]
version = "1.2.0"
[dependencies.pdfboss-jpx]
version = "1.2.0"
[dependencies.png]
version = "0.18"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.pdfboss-core]
version = "1.2.0"
features = ["predefined-cmaps"]