rustybara 0.1.7

Prepress-focused PDF manipulation library for graphic designers and print operators
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 = "rustybara"
version = "0.1.7"
build = false
exclude = ["tests/fixtures/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Prepress-focused PDF manipulation library for graphic designers and print operators"
readme = "README.md"
keywords = [
    "pdf",
    "prepress",
    "trim",
    "bleed",
    "rasterize",
]
categories = ["multimedia::images"]
license = "LGPL-3.0-only"
repository = "https://github.com/Addy-A/rustybara"
resolver = "2"

[features]
color = ["dep:rustybara-icc"]
default = [
    "raster",
    "outline",
]
gpu = []
outline = ["dep:ttf-parser"]
raster = [
    "dep:pdfium-render",
    "dep:image",
    "dep:webp",
]
wasm = []

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

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

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

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

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

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

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

[dependencies.image]
version = "0.25.10"
features = [
    "jpeg",
    "tiff",
    "png",
    "webp",
]
optional = true

[dependencies.lopdf]
version = "0.40.0"

[dependencies.pdfium-render]
version = "0.9.0"
features = ["thread_safe"]
optional = true

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

[dependencies.rustybara-icc]
version = "0.1.0"
optional = true

[dependencies.sha2]
version = "0.11.0"

[dependencies.ttf-parser]
version = "0.25.1"
optional = true

[dependencies.uuid]
version = "1.23.1"
features = ["v4"]

[dependencies.webp]
version = "0.3.1"
optional = true

[dev-dependencies]