[package]
edition = "2021"
name = "pdfboss-cli"
version = "0.10.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for pdfboss: info, text, render, obj, and the json/hex/q/tui explorer subcommands"
readme = "README.md"
keywords = [
"pdf",
"iso-32000",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/4thel00z/pdfboss"
[features]
default = ["substitute-fonts"]
substitute-fonts = ["pdfboss-render/substitute-fonts"]
[[bin]]
name = "pdfboss"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "hex_cmd"
path = "tests/hex_cmd.rs"
[[test]]
name = "json_cmd"
path = "tests/json_cmd.rs"
[[test]]
name = "q_cmd"
path = "tests/q_cmd.rs"
[[test]]
name = "remote_cmd"
path = "tests/remote_cmd.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.futures-core]
version = "0.3"
[dependencies.jaq-core]
version = "2"
[dependencies.jaq-json]
version = "1"
features = ["serde_json"]
[dependencies.jaq-std]
version = "2"
[dependencies.pdfboss-aio]
version = "0.10.0"
features = ["http"]
[dependencies.pdfboss-core]
version = "0.10.0"
[dependencies.pdfboss-render]
version = "0.10.0"
[dependencies.pdfboss-text]
version = "0.10.0"
[dependencies.pdfboss-tui]
version = "0.10.0"
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tokio]
version = "1"
features = [
"rt",
"net",
"time",
]
[dev-dependencies]