-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 768 Bytes
/
Copy pathCargo.toml
File metadata and controls
44 lines (37 loc) · 768 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
37
38
39
40
41
42
43
44
[package]
name = "modsecurity"
version = "0.1.0"
edition = "2021"
[lib]
name = "mylib"
path = "src/lib.rs"
[[bin]]
name = "waf"
path = "src/bin/waf/main.rs"
[[bin]]
name = "pdf_gen"
path = "src/bin/waf/pdf_gen.rs"
[[bin]]
name = "analyser"
path = "src/bin/analyser/main.rs"
[[bin]]
name = "http_server"
path = "src/bin/http_server/main.rs"
[[bin]]
name = "rule"
path = "src/bin/rule_conqueror/rule.rs"
[dependencies]
tokio = { version = "1.28", features = ["full"] }
tokio-rustls = "0.23"
modsecurity = "1.0.0"
axum = "0.8.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
walkdir = "2.4"
lopdf = "0.36.0"
regex = "1.11.1"
toml = "0.5.2"
dotenv = "0.15"
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3.31"
rand = "0.8"