-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 741 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 741 Bytes
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
[package]
name = "key-watch"
version = "2.0.1"
edition = "2024"
rust-version = "1.85"
authors = ["Pa1Nark <pa1nark@pixincreate.dev>"]
description = "A fast secret scanner for files and directories. Detects API keys, tokens, passwords, and sensitive credentials."
repository = "https://github.com/pixincreate/KeyWatch"
homepage = "https://github.com/pixincreate/KeyWatch"
keywords = ["secret-scanner", "security", "credentials", "lint"]
license = "GPL-3.0-only"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
regex = "1.12.4"
toml = "1.1.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
glob = "0.3.3"
dirs = "6.0"
rayon = "1"
sha2 = "0.11"
hex = "0.4"
[dev-dependencies]
tempfile = "3"