[package]
name = "vsec"
version = "0.0.1"
edition = "2021"
rust-version = "1.75"
authors = ["vyrti"]
description = "Detect secrets and in Rust codebases"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/vsec-scan/vsec"
repository = "https://github.com/vsec-scan/vsec"
documentation = "https://docs.rs/vsec"
keywords = ["security", "secrets", "static-analysis", "linter"]
categories = ["development-tools", "command-line-utilities"]
exclude = [
".github/",
".gitignore",
"tests/",
"benches/",
"temp/",
"*.txt",
]
[[bin]]
name = "vsec"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
syn = { version = "2.0", features = ["full", "parsing", "visit"] }
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
rayon = "1.11"
dashmap = "6.1"
jwalk = "0.8"
glob = "0.3"
ignore = "0.4"
gix = "0.77"
regex = "1.12"
aho-corasick = "1.1"
memchr = "2.7"
thiserror = "2.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
termcolor = "1.4"
indicatif = "0.17"
lazy_static = "1.5"
[dev-dependencies]
proptest = "1.9"
criterion = "0.8"
tempfile = "3.24"
pretty_assertions = "1.4"
[[bench]]
name = "parsing"
harness = false
[[bench]]
name = "scoring"
harness = false
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true