pdfplumber 0.2.0

Extract chars, words, lines, rects, and tables from PDF documents with precise coordinates
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 = "pdfplumber"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extract chars, words, lines, rects, and tables from PDF documents with precise coordinates"
readme = false
keywords = [
    "pdf",
    "table",
    "text-extraction",
    "pdfplumber",
    "document",
]
categories = [
    "parser-implementations",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/developer0hye/pdfplumber-rs"

[features]
default = ["std"]
parallel = ["dep:rayon"]
serde = ["pdfplumber-core/serde"]
std = []

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

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

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

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

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

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

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

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

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

[dependencies.pdfplumber-core]
version = "0.2.0"

[dependencies.pdfplumber-parse]
version = "0.2.0"

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

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

[dev-dependencies.lopdf]
version = "0.34"

[dev-dependencies.md5]
version = "0.7"

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