justpdf-render 0.1.2

PDF rendering engine for justpdf - rasterize pages to images
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "justpdf-render"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PDF rendering engine for justpdf - rasterize pages to images"
homepage = "https://github.com/kihyun1998/justpdf"
readme = "README.md"
keywords = [
    "pdf",
    "render",
    "png",
    "image",
    "rasterize",
]
categories = [
    "graphics",
    "rendering",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kihyun1998/justpdf"

[features]
default = []
parallel = ["rayon"]

[lib]
name = "justpdf_render"
path = "src/lib.rs"

[[example]]
name = "render"
path = "examples/render.rs"

[[test]]
name = "render_synthetic"
path = "tests/render_synthetic.rs"

[[test]]
name = "render_test"
path = "tests/render_test.rs"

[[bench]]
name = "render"
path = "benches/render.rs"
harness = false

[dependencies.image]
version = "0.25"
features = [
    "png",
    "jpeg",
]
default-features = false

[dependencies.justpdf-core]
version = "0.1.2"

[dependencies.rayon]
version = "1"
optional = true

[dependencies.tiny-skia]
version = "0.11"

[dependencies.ttf-parser]
version = "0.25"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.justpdf-core]
version = "0.1.2"