-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (25 loc) · 1.06 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
[workspace]
members = [
"dpdk",
"dpdk-sys",
"errno",
"net",
"scratch",
]
resolver = "2"
[workspace.dependencies]
bindgen = { version = "0.70.1" }
bolero = { version = "=0.10.1" } # TODO: update as soon as resolution bug with 0.11 or better is fixed
cc = { version = "1.1.37" }
criterion = { version = "0.5.1", default-features = true }
doxygen-rs = { version = "0.4.0" }
etherparse = { version = "0.16.0", default-features = false, features = [] }
libc = { version = "0.2.161" }
rand = { version = "0.8.5", default-features = false, features = [] }
rstest = { version = "0.23.0", default-features = false, features = [] }
serde = { version = "1.0.213", default-features = false, features = ["derive", "alloc", "rc"] }
syscalls = { version = "0.6.18" }
thiserror = { version = "2.0.0", package = "thiserror-no-std" } # replace with regular thiserror when https://github.com/dtolnay/thiserror/pull/304 lands
tracing = { version = "0.1.40", default-features = false, features = ["attributes"] }
tracing-subscriber = { version = "0.3.18" }
tracing-test = { version = "0.2.5" }