-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
46 lines (39 loc) · 885 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "proxy"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.95"
base64 = "0.22.1"
dashmap = "6.1.0"
hyper = "1.6.0"
k8s-openapi = "0.25.0"
kube = "1.0.0"
kube-runtime = "1.0.0"
lazy_static = "1.5.0"
prometheus = "0.14.0"
serde = "1.0.219"
serde_json = "1.0.140"
tokio = "1.45.1"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
warp = "0.3.7"
time = "=0.3.41"
aya-ebpf = { git = "https://github.com/aya-rs/aya" }
aya-log-ebpf = { git = "https://github.com/aya-rs/aya" }
bytemuck = "1.23.1"
aya = "0.13.1"
once_cell = { version = "1.20.3" }
[dependencies.shared]
path = "../../shared"
[build-dependencies]
which = { version = "8.0.0", default-features = false }
[[bin]]
name = "proxy"
path = "src/main.rs"
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[patch.crates-io]
once_cell = "1.20.3"