Öffentliche Dateiansicht: Raw-Dateien, Tree, Releases und Issues sind ohne Login verfügbar.
Cargo.toml Raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "leakguard"
version = "1.0.4"
edition = "2024"
description = "leakguard — fast secret scanner for your codebase"

[lib]
name = "leakguard"
crate-type = ["cdylib", "rlib"]

[[bin]]
name = "leakguard"
path = "src/main.rs"

[features]
default = []
extension-module = ["pyo3/extension-module", "pyo3/abi3-py38"]

[dependencies]
pyo3 = { version = "0.28.2", optional = true }
regex = "1.12"
clap = { version = "4.5", features = ["derive"] }
walkdir = "2.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
colored = "3.1.1"
anyhow = "1.0"
toml = "1.0.3"
sha2 = "0.10"

[dev-dependencies]
tempfile = "3.10"