pdfrs 0.1.0

A CLI tool to read/write PDFs and convert to/from markdown
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 = "pdfrs"
version = "0.1.0"
authors = ["Ying Kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool to read/write PDFs and convert to/from markdown"
homepage = "https://github.com/yingkitw/pdfrs"
documentation = "https://docs.rs/pdfrs"
readme = "README.md"
keywords = [
    "pdf",
    "markdown",
    "cli",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/pdfrs"

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

[[bin]]
name = "pdfcli"
path = "src/main.rs"

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.0"
features = ["derive"]

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.syntect]
version = "5.0"

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

[dev-dependencies.proptest]
version = "1.4"