[package]
edition = "2021"
rust-version = "1.89"
name = "fleetreach-cli"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fleet-wide dependency security audit across 12 ecosystems from one CLI: deduplicated and ranked, with blast-radius analysis, a batched remediation queue, and sound Rust reachability."
homepage = "https://github.com/tess-fun/fleetreach"
readme = "README.md"
keywords = [
"security",
"audit",
"rustsec",
"advisory",
"vulnerability",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tess-fun/fleetreach"
[features]
network = [
"dep:ureq",
"fleetreach-scan/network",
]
[lib]
name = "fleetreach_cli"
path = "src/lib.rs"
[[bin]]
name = "fleetreach"
path = "src/main.rs"
[[test]]
name = "baseline"
path = "tests/baseline.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "enrich"
path = "tests/enrich.rs"
[[test]]
name = "npm_reach"
path = "tests/npm_reach.rs"
[[test]]
name = "orchestrate"
path = "tests/orchestrate.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[[test]]
name = "reach"
path = "tests/reach.rs"
[[test]]
name = "report_assembly"
path = "tests/report_assembly.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "static_reach_e2e"
path = "tests/static_reach_e2e.rs"
[[test]]
name = "vex_roundtrip"
path = "tests/vex_roundtrip.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.fleetreach-core]
version = "1.0.0"
[dependencies.fleetreach-correlate]
version = "1.0.0"
[dependencies.fleetreach-ghactions]
version = "1.0.0"
[dependencies.fleetreach-go]
version = "1.0.0"
[dependencies.fleetreach-hex]
version = "1.0.0"
[dependencies.fleetreach-julia]
version = "1.0.0"
[dependencies.fleetreach-maven]
version = "1.0.0"
[dependencies.fleetreach-npm]
version = "1.0.0"
[dependencies.fleetreach-nuget]
version = "1.0.0"
[dependencies.fleetreach-packagist]
version = "1.0.0"
[dependencies.fleetreach-pypi]
version = "1.0.0"
[dependencies.fleetreach-reach]
version = "1.0.0"
[dependencies.fleetreach-report]
version = "1.0.0"
[dependencies.fleetreach-rubygems]
version = "1.0.0"
[dependencies.fleetreach-scan]
version = "1.0.0"
[dependencies.fleetreach-swift]
version = "1.0.0"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"std",
]
[dependencies.toml]
version = "0.9"
[dependencies.ureq]
version = "2"
optional = true
[dependencies.walkdir]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"