[package]
edition = "2024"
rust-version = "1.85"
name = "pdfplumber-cli"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool to extract text, characters, words, and tables from PDF documents"
readme = "README.md"
keywords = [
"pdf",
"cli",
"table",
"text-extraction",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/developer0hye/pdfplumber-rs"
[[bin]]
name = "pdfplumber"
path = "src/main.rs"
[[test]]
name = "annots_cmd"
path = "tests/annots_cmd.rs"
[[test]]
name = "bookmarks_cmd"
path = "tests/bookmarks_cmd.rs"
[[test]]
name = "chars_cmd"
path = "tests/chars_cmd.rs"
[[test]]
name = "cli_args"
path = "tests/cli_args.rs"
[[test]]
name = "info_cmd"
path = "tests/info_cmd.rs"
[[test]]
name = "links_cmd"
path = "tests/links_cmd.rs"
[[test]]
name = "search_cmd"
path = "tests/search_cmd.rs"
[[test]]
name = "tables_cmd"
path = "tests/tables_cmd.rs"
[[test]]
name = "text_cmd"
path = "tests/text_cmd.rs"
[[test]]
name = "validate_cmd"
path = "tests/validate_cmd.rs"
[[test]]
name = "words_cmd"
path = "tests/words_cmd.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.pdfplumber]
version = "0.2.0"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.lopdf]
version = "0.36"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"