[package]
edition = "2021"
name = "crush-cli"
version = "0.2.1"
authors = ["Crush Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the Crush compression library"
homepage = "https://github.com/john-agentic-ai-tools/crush"
readme = "README.md"
license = "MIT"
repository = "https://github.com/john-agentic-ai-tools/crush"
[features]
cuda = ["crush-gpu/cuda"]
[[bin]]
name = "crush"
path = "src/main.rs"
[[test]]
name = "cancel_feedback"
path = "tests/cancel_feedback.rs"
[[test]]
name = "compress"
path = "tests/compress.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "decompress"
path = "tests/decompress.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "inspect"
path = "tests/inspect.rs"
[[test]]
name = "logging"
path = "tests/logging.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "plugins"
path = "tests/plugins.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[bench]]
name = "bench_utils"
path = "benches/bench_utils.rs"
[[bench]]
name = "cli_startup"
path = "benches/cli_startup.rs"
harness = false
[[bench]]
name = "help_command"
path = "benches/help_command.rs"
harness = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crush-core]
version = "0.2.0"
[dependencies.crush-gpu]
version = "0.1.1"
[dependencies.crush-parallel]
version = "0.1.0"
[dependencies.ctrlc]
version = "3.4"
[dependencies.dirs]
version = "6.0"
[dependencies.filetime]
version = "0.2"
[dependencies.indicatif]
version = "0.18"
[dependencies.is-terminal]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.termcolor]
version = "1.4"
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.10"