-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (29 loc) · 837 Bytes
/
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
[package]
name = "charon"
version = "0.1.0"
edition = "2024"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
[dependencies]
async-trait = "0.1.83"
bat = "0.24.0"
clap = { version = "4.5.23", features = ["derive"] }
color-eyre = "0.6.3"
http = "1.2.0"
pest = "2.7.15"
pest_derive = "2.7.15"
pingora = { version = "0.4.0", features = ["proxy"] }
pingora-core = { version = "0.4.0", features = ["rustls"] }
pingora-http = "0.4.0"
pingora-load-balancing = { version = "0.4.0", features = ["rustls"] }
pingora-proxy = { version = "0.4.0", features = ["rustls"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["full"] }
toml = "0.8.19"
tracing = { version = "0.1.41", features = ["async-await"] }
tracing-subscriber = "0.3.19"
url = "2.5.4"