summaryrefslogtreecommitdiff
path: root/crates/hashx/fuzz/Cargo.toml
blob: 2c45fc4a32f004776824db15d131cd89897dedc4 (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 = "2021"

[package.metadata]
cargo-fuzz = true

[dependencies]
arbitrary = { version = "1.0.1", features = ["derive"] }
hashx = { path = "../" }
libfuzzer-sys = "0.4"
rand = "0.8.5"
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