grin/core/fuzz/Cargo.toml
hashmap 32662a0a16 Update fuzz in core crate
Fix compilation error in fuzz code after the wallet refactoring
2018-08-09 11:37:11 +02:00

35 lines
730 B
TOML

[package]
name = "grin_core-fuzz"
version = "0.0.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
grin_core = { path = ".."}
grin_keychain = { path = "../../keychain"}
grin_wallet = { path = "../../wallet"}
[dependencies.libfuzzer-sys]
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "transaction_read"
path = "fuzz_targets/transaction_read.rs"
[[bin]]
name = "gen-corpus"
path = "src/main.rs"
[[bin]]
name = "block_read"
path = "fuzz_targets/block_read.rs"
[[bin]]
name = "compact_block_read"
path = "fuzz_targets/compact_block_read.rs"