cleanlib-cli 0.1.0

Terminal interface to CleanLibrary โ€” query dependency verdicts and scan package manifests for ALLOW / DENY / WARN signals from the terminal or CI pipelines.
[package]
name = "cleanlib-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Terminal interface to CleanLibrary โ€” query dependency verdicts and scan package manifests for ALLOW / DENY / WARN signals from the terminal or CI pipelines."
keywords = ["security", "dependencies", "verdicts", "supply-chain", "cli"]
categories = ["command-line-utilities", "development-tools"]

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

# Cli8 integration matrix lives in tests/integration/ (per dispatch ยง2.8);
# Cargo only auto-discovers top-level tests/*.rs, so we register the dir
# explicitly with the per-target `path =` knob.
[[test]]
name = "integration"
path = "tests/integration/main.rs"

[dependencies]
clap = { workspace = true }
cleanlib-client = { workspace = true }
anyhow = { workspace = true }
chrono = { workspace = true }
tokio = { workspace = true, features = ["io-std"] }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
futures-util = { workspace = true }
owo-colors = { workspace = true }
comfy-table = { workspace = true }
is-terminal = { workspace = true }
# cycle-7 Cli6/Cli7
keyring = { workspace = true }
sled = { workspace = true }
bincode = { workspace = true }
dirs = { workspace = true }

[dev-dependencies]
# cycle-7 Cli8 integration tests
wiremock = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "io-std"] }
tempfile = "3"