-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 771 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
[package]
name = "devrelay"
version = "0.1.2"
edition = "2024"
[[bin]]
name = "devrelay"
path = "src/main.rs"
[dependencies]
# Proxy
pingora = { version = "0.7", features = ["openssl"] }
pingora-core = { version = "0.7", features = ["openssl"] }
pingora-proxy = { version = "0.7", features = ["openssl"] }
pingora-load-balancing = { version = "0.7", features = ["openssl"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Async
tokio = { version = "1.44", features = ["full"] }
async-trait = "0.1"
# Error handling
anyhow = "1.0"
# TLS / Certs
rcgen = "0.13"
rustls-pemfile = "2.1"
sha2 = "0.10"
time = { version = "0.3", features = ["macros"] }
x509-parser = "0.16"