-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (68 loc) · 2.13 KB
/
Cargo.toml
File metadata and controls
81 lines (68 loc) · 2.13 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
79
80
81
[package]
name = "scamazon"
version = "0.1.0"
edition = "2021"
authors = ["Scamazon Team"]
description = "Advanced security scanner honeypot with multi-layered behavioral detection"
readme = "README.md"
repository = "https://github.com/your-org/scamazon"
license = "MIT"
keywords = ["honeypot", "security", "scanner", "detection", "cybersecurity"]
categories = ["web-programming", "network-programming"]
[[bin]]
name = "seed_golden_set"
path = "src/bin/seed_golden_set.rs"
[dependencies]
# Web framework and async runtime
axum = { version = "0.7", features = ["macros"] }
tokio = { version = "1.0", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["trace", "limit", "cors"] }
# Serialization and config
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Detection and pattern matching
regex = "1.0"
aho-corasick = "1.0"
strsim = "0.11" # For Levenshtein distance
# HTTP and networking
reqwest = { version = "0.11", features = ["json"] }
http = "1.0"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# Utilities
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
base64 = "0.22"
flate2 = "1.0" # For gzip compression
hex = "0.4" # For hex encoding
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "uuid", "json"] }
lz4 = "1.24" # For payload compression
# Optional features
notify = { version = "6.0", optional = true } # For hot-reload
[features]
default = []
hot-reload = ["notify"]
# Linting configuration
[lints.rust]
# Allow dead code for future-ready implementations
dead_code = "allow"
# Allow unused imports for development convenience
unused_imports = "allow"
# Allow unused variables with underscore prefix
unused_variables = "allow"
# Allow unused mut for development
unused_mut = "allow"
[lints.clippy]
# Allow complex types for honeypot sophistication
type_complexity = "allow"
# Allow large enums for payload variety
large_enum_variant = "allow"
[[bin]]
name = "scamazon"
path = "src/main.rs"