stet 0.5.0

PostScript Level 3 interpreter and PDF rendering engine — library API
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.88"
name = "stet"
version = "0.5.0"
authors = ["Scott Bowman <scott@bowmans.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostScript Level 3 interpreter and PDF rendering engine — library API"
homepage = "https://github.com/AndyCappDev/stet"
readme = "README.md"
keywords = [
    "postscript",
    "pdf",
    "interpreter",
    "rendering",
    "graphics",
]
categories = [
    "graphics",
    "rendering",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/AndyCappDev/stet"

[features]
default = [
    "render",
    "pdf-output",
]
pdf-output = ["dep:stet-pdf"]
render = ["dep:stet-render"]

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

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

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

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

[[example]]
name = "render_ps"
path = "examples/render_ps.rs"
required-features = ["render"]

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

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

[dependencies.stet-core]
version = "0.5.0"

[dependencies.stet-engine]
version = "0.5.0"

[dependencies.stet-fonts]
version = "0.5.0"

[dependencies.stet-graphics]
version = "0.5.0"

[dependencies.stet-ops]
version = "0.5.0"

[dependencies.stet-pdf]
version = "0.5.0"
optional = true

[dependencies.stet-render]
version = "0.5.0"
optional = true

[dev-dependencies.png]
version = "0.17"

[dev-dependencies.stet-pdf-reader]
version = "0.5.0"