aboutsummaryrefslogtreecommitdiff
path: root/crates/hashx/fuzz/Cargo.toml
blob: d6f19db7714a5c48ac19220202ac8b7da4869b5a (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
[package]
name = "hashx-fuzz"
version = "0.0.0"
publish = false
edition = "2024"

[package.metadata]
cargo-fuzz = true

[dependencies]
arbitrary = { version = "1.0.1", features = ["derive"] }
hashx = { path = "../" }
libfuzzer-sys = "0.4"
rand = "0.10"
tor-c-equix = { git = "https://gitlab.torproject.org/tpo/core/tor.git" }

[workspace]
members = ["."]

[profile.release]
debug = 1

[[bin]]
name = "rng"
path = "fuzz_targets/rng.rs"
test = false
doc = false