-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.33 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
[package]
name = "core"
version = "0.1.0"
edition = "2021" # Rust edition, don't change
[workspace]
members = [
"src/components/kernel",
"src/components/loadbalancer",
"src/client",
"src/shared",
"src/components/proxy",
"src/components/xdp",
"src/components/maps",
"src/components/conntracker",
"xtask",
"src/components/identity",
]
[dependencies]
actix-web = "4.9.0"
clap = "4.5.21"
reqwest = { version = "0.12.9", features = ["json"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1.40"
futures = "0.3.31"
anyhow = "1.0.93"
schemas = "0.4.0"
yaml-rust2 = "0.10.3"
kube = { version = "1.1.0", features = ["runtime", "derive", "ws"] }
k8s-openapi = { version = "0.25.0", features = ["latest"] }
serde_json = "1.0.133"
tokio-util = { version = "0.7.8", features = ["io"] }
tokio-stream = { version = "0.1.9", features = ["net"] }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
serde = { version = "1.0", features = ["derive"] }
hyper-util = "0.1.10"
tower = "0.5.1"
ipnet = "2.10.1"
iptables = "0.5.2"
itertools = "0.14.0"
libc = "0.2.164"
libloading = "0.8.5"
libp2p = "0.56.0"
serde_yaml = "0.9.34"
pnet = "0.35.0"
bytes = "1.9.0"
prost = "0.14.1"
trust-dns-server = "0.23.2"
dirs = "6.0.0"
[dev-dependencies]
wiremock = "0.6.0"
[build-dependencies]
prost-build = "0.14.1"