-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (41 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "aegis-waf"
version = "3.3.1"
description = "simple web application firewall"
license = "MIT"
homepage = "https://github.com/utibeabasi6/aegis"
edition = "2021"
publish = true
[[bin]]
name = "aegis"
path = "src/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.34"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"]}
tracing = { version = "0.1", features = ["std", "attributes"] }
tracing-subscriber = { version = "0.3", features = [
"std",
"serde",
"json",
"fmt",
"tracing-log",
"env-filter"
] }
bb8-redis = "0.17.0"
bb8 = "0.8.5"
tower-http = { version = "0.6.1", features = ["timeout", "trace", "request-id"] }
url = "2.5.2"
regex = "1.11.0"
reqwest = "0.12.8"
clap = { version = "4.5.20", features = ["derive"] }
tower = "0.5.1"
hyper = "1.4.1"
http-body-util = "0.1.2"
bytes = "1.7.2"
actix-web = "4.9.0"
opentelemetry = "0.26.0"
opentelemetry_sdk = {version = "0.26.0", features = ["rt-tokio"]}
opentelemetry-otlp = "0.26.0"
opentelemetry-semantic-conventions = "0.26.0"