ironpress 1.4.2

Pure Rust HTML/CSS/Markdown to PDF converter with layout engine, LaTeX math, tables, images, custom fonts, and streaming output. No browser, no system dependencies.
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"
rust-version = "1.85"
name = "ironpress"
version = "1.4.2"
build = false
exclude = [
    ".github/",
    ".claude/",
    "target/",
    "docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust HTML/CSS/Markdown to PDF converter with layout engine, LaTeX math, tables, images, custom fonts, and streaming output. No browser, no system dependencies."
documentation = "https://docs.rs/ironpress"
readme = "README.md"
keywords = [
    "pdf",
    "html",
    "css",
    "markdown",
    "converter",
]
categories = [
    "text-processing",
    "encoding",
    "template-engine",
]
license = "MIT"
repository = "https://github.com/gastongouron/ironpress"

[features]
async = ["tokio"]
default = []
remote = ["ureq"]
wasm = [
    "wasm-bindgen",
    "js-sys",
    "getrandom/wasm_js",
]

[lib]
name = "ironpress"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "ironpress"
path = "src/bin/cli.rs"

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

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

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

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

[dependencies.flate2]
version = "1"

[dependencies.fontdb]
version = "0.23"

[dependencies.getrandom]
version = "0.3"
optional = true

[dependencies.html5ever]
version = "0.38"

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

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.lightningcss]
version = "1.0.0-alpha.71"
default-features = false

[dependencies.markup5ever_rcdom]
version = "0.38"

[dependencies.png_decoder]
version = "0.18"
package = "png"

[dependencies.pulldown-cmark]
version = "0.13"

[dependencies.resvg]
version = "0.47"

[dependencies.rustybuzz]
version = "0.20"

[dependencies.subsetter]
version = "0.2.3"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "rt",
]
optional = true

[dependencies.unicode-bidi]
version = "0.3.18"

[dependencies.ureq]
version = "3"
optional = true

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

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

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]