-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
50 lines (46 loc) · 1.26 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
44
45
46
47
48
49
50
[package]
name = "orbit"
version = "0.3.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
futures = "0.3"
async-trait = "0.1.85"
clap = { version = "4.5.26", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.136"
serde_yaml = "0.9"
humantime-serde = "1.1.1"
uuid = { version = "1.12.0", features = ["v4", "serde"] }
validator = { version = "0.20", features = ["derive"] }
validator_derive = "0.20.0"
thiserror = "2.0.11"
anyhow = "1.0.95"
regex = "1.11.1"
rustc-hash = "2.1.0"
# fn
bollard = { version = "0.18.1" }
reqwest = { version = "0.12.12", features = ["json", "rustls-tls"], default-features = false }
pingora = { version = "0.4.0", features = ["lb"] }
pingora-http = "0.4.0"
pingora-load-balancing = "0.4.0"
pingora-proxy = "0.4.0"
pingora-core = "0.4.0"
# pingora-core = { path = "/home/kav/dev/rust/pingora/pingora-core" }
notify = "8.0.0"
notify-debouncer-full = "0.5.0"
axum = "0.8.1"
prometheus = { version = "0.13.4", features = ["process"] }
tempfile = "3.15.0"
walkdir = "2.5.0"
libc = "0.2.169"
# logging
slog = { version = "2.7.0" }
slog-json = "2.6.1"
slog-scope = "4.4.0"
slog-async = "2.8"
slog-term = "2.9.0"
[profile.release]
embed-bitcode = false
lto = true
codegen-units = 1