[package]
edition = "2021"
rust-version = "1.85"
name = "vallum"
version = "0.8.10"
authors = ["Emir Kahraman"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security boundary between AI coding agents and your shell — redacts secrets, neutralizes prompt injection, sanitizes untrusted terminal output, audits every command."
homepage = "https://github.com/kahramanemir/Vallum"
readme = "README.md"
keywords = [
"ai-agents",
"prompt-injection",
"llm-security",
"security",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kahramanemir/Vallum"
[features]
bpe = ["dep:tiktoken-rs"]
[lib]
name = "vallum"
path = "src/lib.rs"
[[bin]]
name = "vallum"
path = "src/main.rs"
[[example]]
name = "eval"
path = "examples/eval.rs"
[[test]]
name = "approval_e2e"
path = "tests/approval_e2e.rs"
[[test]]
name = "circuit_breaker"
path = "tests/circuit_breaker.rs"
[[test]]
name = "cli_test"
path = "tests/cli_test.rs"
[[test]]
name = "doctor_hook_audit"
path = "tests/doctor_hook_audit.rs"
[[test]]
name = "integration_ux"
path = "tests/integration_ux.rs"
[[test]]
name = "log_chain"
path = "tests/log_chain.rs"
[[test]]
name = "mcp_scan"
path = "tests/mcp_scan.rs"
[[test]]
name = "policy_precision"
path = "tests/policy_precision.rs"
[[test]]
name = "policy_run"
path = "tests/policy_run.rs"
[[test]]
name = "security_corpus"
path = "tests/security_corpus.rs"
[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs]
version = "5"
[dependencies.hmac]
version = "0.12"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tiktoken-rs]
version = "0.6"
optional = true
[dependencies.toml]
version = "0.8"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.dist]
lto = "thin"
inherits = "release"