justpdf 0.1.2

Pure Rust PDF engine - read, render, extract, create, modify
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"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust PDF engine - read, render, extract, create, modify"
homepage = "https://github.com/kihyun1998/justpdf"
readme = "README.md"
keywords = [
    "pdf",
    "document",
    "render",
    "text-extraction",
    "parser",
]
categories = [
    "parser-implementations",
    "text-processing",
    "graphics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kihyun1998/justpdf"

[features]
arena = ["justpdf-core/arena"]
async = ["tokio"]
default = []
mmap = ["justpdf-core/mmap"]
parallel = ["justpdf-render/parallel"]

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

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

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

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

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

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

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

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

[dev-dependencies]