vsec 0.0.1

Detect secrets and in Rust codebases
Documentation
[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]
# CLI
clap = { version = "4.5", features = ["derive"] }

# Parsing
syn = { version = "2.0", features = ["full", "parsing", "visit"] }
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"

# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"

# Async/Parallel
rayon = "1.11"
dashmap = "6.1"

# File system
jwalk = "0.8"
glob = "0.3"
ignore = "0.4"

# Git history scanning
gix = "0.77"

# Regex
regex = "1.12"

# SIMD pattern matching
aho-corasick = "1.1"
memchr = "2.7"

# Error handling
thiserror = "2.0"
anyhow = "1.0"

# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# Output formatting
termcolor = "1.4"
indicatif = "0.17"

# Caching
lazy_static = "1.5"

[dev-dependencies]
# Testing
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