raptorq/fuzz/Cargo.toml
Christopher Berner d16556c4ed Add fuzzer
2023-07-03 11:09:19 -07:00

28 lines
525 B
TOML

[package]
name = "raptorq-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
arbitrary = { version = "1.1.0", features = ["derive"] }
libfuzzer-sys = { version = "0.4.0", features = ["arbitrary-derive"] }
rand = "0.8.5"
[dependencies.raptorq]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "fuzz_raptorq"
path = "fuzz_targets/fuzz_raptorq.rs"
test = false
doc = false