edgeparse-core 0.2.3

EdgeParse core library — PDF parsing and structured data extraction
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 = "2021"
rust-version = "1.85"
name = "edgeparse-core"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "EdgeParse core library — PDF parsing and structured data extraction"
documentation = "https://docs.rs/edgeparse-core"
readme = "README.md"
keywords = [
    "pdf",
    "extraction",
    "markdown",
    "rag",
    "llm",
]
categories = [
    "text-processing",
    "parsing",
    "data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/raphaelmansuy/edgeparse"

[package.metadata.docs.rs]
features = ["hybrid"]
rustdoc-args = [
    "--cfg",
    "docsrs",
]
all-features = false

[features]
default = ["native"]
hybrid = [
    "dep:reqwest",
    "dep:tokio",
]
native = [
    "rayon",
    "image",
    "zip",
    "lopdf/rayon",
]
wasm = ["lopdf/wasm_js"]

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"

[dependencies.euclid]
version = "0.22"

[dependencies.image]
version = "0.25"
optional = true

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.log]
version = "0.4"

[dependencies.lopdf]
version = "0.39.0"
features = [
    "chrono",
    "jiff",
    "time",
]
default-features = false
package = "pdf-cos"

[dependencies.ordered-float]
version = "4"
features = ["serde"]

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

[dependencies.regex]
version = "1.12"

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1"
features = ["full"]
optional = true

[dependencies.ttf-parser]
version = "0.25"

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.zip]
version = "2.2"
features = ["deflate"]
optional = true
default-features = false

[dev-dependencies]