-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 856 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 856 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
28
29
30
31
32
33
34
35
36
[package]
name = "secox"
version = "0.1.0"
edition = "2021"
description = "Zero-setup CLI secret scanner — catches API keys, tokens, and credentials before they leave your machine"
license = "MIT"
keywords = ["security", "secrets", "git", "scanner", "credentials"]
categories = ["command-line-utilities", "development-tools"]
[lib]
name = "secox_lib"
path = "src/lib.rs"
[[bin]]
name = "secox"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "color"] }
regex = "1"
walkdir = "2"
anyhow = "1"
colored = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
once_cell = "1"
zip = { version = "2", default-features = false, features = ["deflate"] }
ureq = { version = "2", features = ["json"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[profile.release]
lto = true
codegen-units = 1
strip = true