[package]
edition = "2021"
name = "assay-cli"
version = "2.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for Assay"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Rul1an/assay"
[features]
experimental = ["assay-core/experimental"]
profile-test-hook = []
[[bin]]
name = "assay"
path = "src/main.rs"
[[test]]
name = "coverage_threshold"
path = "tests/coverage_threshold.rs"
[[test]]
name = "dev_encoding"
path = "tests/dev_encoding.rs"
[[test]]
name = "e2e_mcp_wrap_assert_cmd"
path = "tests/e2e_mcp_wrap_assert_cmd.rs"
[[test]]
name = "e2e_policy_test"
path = "tests/e2e_policy_test.rs"
[[test]]
name = "evidence_test"
path = "tests/evidence_test.rs"
[[test]]
name = "generate_golden"
path = "tests/generate_golden.rs"
[[test]]
name = "golden_runner"
path = "tests/golden_runner.rs"
[[test]]
name = "inode_gen"
path = "tests/inode_gen.rs"
[[test]]
name = "kill_switch_assert_cmd"
path = "tests/kill_switch_assert_cmd.rs"
[[test]]
name = "lsm_deny_smoke"
path = "tests/lsm_deny_smoke.rs"
[[test]]
name = "policy_edge_cases"
path = "tests/policy_edge_cases.rs"
[[test]]
name = "profile_integration_test"
path = "tests/profile_integration_test.rs"
[[test]]
name = "strict_open"
path = "tests/strict_open.rs"
[dependencies.anyhow]
version = "1"
[dependencies.assay-common]
version = "2.7.0"
features = ["std"]
default-features = false
[dependencies.assay-core]
version = "2.7.0"
[dependencies.assay-evidence]
version = "2.7.0"
[dependencies.assay-mcp-server]
version = "2.7.0"
[dependencies.assay-metrics]
version = "2.7.0"
[dependencies.assay-monitor]
version = "2.7.0"
[dependencies.assay-policy]
version = "2.7.0"
[dependencies.assay-sim]
version = "2.7.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"std",
"clock",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "5.0"
[dependencies.env_logger]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.humantime]
version = "2"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.27"
features = [
"signal",
"process",
"fs",
"ioctl",
]
[dependencies.once_cell]
version = "1.18"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"std",
]
default-features = false
[dependencies.serde_json]
version = "1.0"
features = ["std"]
default-features = false
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2"
[dependencies.sysinfo]
version = "0.30"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.assert_cmd]
version = "2.1.1"
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serial_test]
version = "3.3.1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_os = "linux")'.dependencies.landlock]
version = "=0.4.3"
[lints.clippy]
missing_errors_doc = "allow"
print_stdout = "allow"
unwrap_used = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "deny"
unused_lifetimes = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1