-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
72 lines (63 loc) · 2.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
members = [
"dataplane",
"dpdk",
"dpdk-sys",
"dpdk-sysroot-helper",
"errno",
"net",
"routing",
]
default-members = [
"dataplane",
"dpdk-sysroot-helper",
"errno",
"net",
"routing",
]
resolver = "3"
[workspace.dependencies]
# Internal
dpdk = { path = "./dpdk" }
dpdk-sys = { path = "./dpdk-sys" }
dpdk-sysroot-helper = { path = "./dpdk-sysroot-helper" }
dplane-rpc = { git = "https://github.com/githedgehog/dplane-rpc.git", version = "1.0.0" }
errno = { path = "./errno", package = "dataplane-errno" }
net = { path = "./net" }
routing = { path = "./routing" }
# External
arbitrary = { version = "1.4.1", default-features = false, features = [] }
arrayvec = { version = "0.7.6", default-features = false, features = [] }
bindgen = { version = "0.71.1", default-features = false, features = [] }
bolero = { version = "0.13.0", default-features = false, features = [] }
bytes = { version = "1.10.0", default-features = false, features = [] }
# std feature currently globally required for clap
clap = { version = "4.5.31", default-features = false, features = ["std"] }
ctrlc = { version = "3.4.5", default-features = false, features = [] }
doxygen-rs = { version = "0.4.2", default-features = false, features = [] }
dyn-iter = { version = "1.0.1", default-features = false, features = [] }
etherparse = { version = "0.17.0", default-features = false, features = [] }
ipnet = { version = "2.11.0", default-features = false, features = [] }
iptrie = { version = "0.10.2", default-features = false, features = [] }
mio = { version = "1.0.3", default-features = false, features = [] }
serde = { version = "1.0.218", default-features = false, features = [] }
serde_yml = { version = "0.0.12", default-features = false, features = [] }
thiserror = { version = "2.0.12", default-features = false, features = [] }
# attribute feature is so commonly used that we should just leave it on globally
tracing = { version = "0.1.41", default-features = false, features = ["attributes"] }
tracing-subscriber = { version = "0.3.19", default-features = false, features = [] }
tracing-test = { version = "0.2.5", default-features = false, features = [] }
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
[profile.fuzz]
inherits = "release"
opt-level = 3
panic = "unwind"
debug = "full"
lto = "off"
debug-assertions = true
overflow-checks = true
codegen-units = 1
rpath = true