blob: 0403d92f216d63e2e2ba447422f08589d961bab1 (
plain)
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
|
[package]
name = "equix-fuzz"
version = "0.0.0"
publish = false
edition = "2024"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.0.1", features = ["derive"] }
arrayvec = "0.7.4"
libfuzzer-sys = "0.4"
[dependencies.equix]
path = ".."
features = ["bucket-array"]
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[profile.release]
debug = 1
[[bin]]
name = "buckets"
path = "fuzz_targets/buckets.rs"
test = false
doc = false
|