-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (28 loc) · 1.03 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
[package]
name = "net"
version = "0.0.1"
edition = "2024"
publish = false
license = "Apache-2.0"
[features]
default = []
serde = ["dep:serde"]
arbitrary = ["dep:arbitrary", "dep:bolero"]
test_buffer = []
[dependencies]
ahash = { workspace = true }
arbitrary = { workspace = true, features = ["derive"], optional = true }
bolero = { workspace = true, features = ["alloc", "arbitrary", "std"], optional = true }
arrayvec = { workspace = true }
# ideally, we would do without "std" for etherparse, but we need it for error types.
etherparse = { workspace = true, features = ["std"] }
serde = { workspace = true, optional = true, features = ["derive"] }
thiserror = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
arbitrary = { workspace = true, features = ["derive"] }
bolero = { workspace = true, features = ["alloc", "arbitrary", "std"] }
etherparse = { workspace = true, default-features = false, features = ["std"] }
ordermap = { workspace = true }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }