-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (59 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
78 lines (59 loc) · 1.35 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "certhound"
version = "0.1.0"
edition = "2024"
description = "Internet-scale TLS certificate anomaly hunter"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.26"
rustls = { version = "0.23", features = ["ring"] }
rustls-pki-types = "1"
# Certificate parsing
x509-parser = "0.16"
# Hashing
sha2 = "0.10"
sha1 = "0.10"
hex = "0.4"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Error handling
thiserror = "2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Progress
indicatif = "0.17"
# IP/network
ipnet = "2"
# Rate limiting
governor = "0.8"
# Concurrency
nonzero_ext = "0.3"
dashmap = "6"
# JARM fingerprinting (Phase 3)
rust_jarm = "0.3"
# GeoIP (Phase 3)
maxminddb = "0.24"
# Regex (Phase 4 - baseline pattern matching)
regex = "1"
# HTTP client (Phase 5 - watch mode API clients)
reqwest = { version = "0.12", features = ["json"] }
async-trait = "0.1"
# Compression (discovery scoring - Kolmogorov/NCD/MDL)
flate2 = "1"
[dev-dependencies]
rcgen = "0.13"
tempfile = "3.25.0"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"
overflow-checks = true