-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.95 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (69 loc) · 1.95 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
[workspace]
members = ["crates/*"]
default-members = ["crates/proxy"]
resolver = "3"
[workspace.dependencies]
axum = "0.8"
bytes = "1"
dotenvy = "0.15"
futures-util = "0.3"
http = "1"
http-body = "1"
reqwest = { version = "0.12", features = ["stream", "rustls-tls"], default-features = false }
serde_json = "1"
http-body-util = "0.1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["util", "limit"] }
tower-http = { version = "0.6", features = ["cors", "trace", "util", "set-header", "limit", "timeout"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower_governor = { version = "0.8", default-features = false, features = ["axum"] }
hyper-util = { version = "0.1", features = ["server", "http1", "http2", "tokio"] }
hyper = { version = "1", features = ["server", "http1", "http2"] }
dashmap = "6"
socket2 = "0.5"
tokio-util = "0.7"
tokio-rustls = "0.26"
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
rustls-pemfile = "2"
metrics = "0.24"
metrics-exporter-prometheus = "0.18"
url = "2"
uuid = { version = "1", features = ["v4"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
percent-encoding = "2"
serde = { version = "1", features = ["derive"] }
aes-gcm = "0.10"
base64 = "0.22"
[workspace.package]
version = "1.0.0"
authors = [
"Akilesh A S <io@akileshas.dev>",
]
edition = "2024"
rust-version = "1.97.0"
readme = "README.md"
repository = "https://codeberg.org/exploitx/void-prx/"
license-file = "LICENSE.md"
[workspace.lints.rust]
unused_imports = "warn"
unused_variables = "warn"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
nursery = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
must_use_candidate = "allow"
missing_const_for_fn = "allow"
doc_markdown = "allow"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = "symbols"
panic = "abort"