grin/core/fuzz/Cargo.toml
Alexey Miroshkin eb226beea8 Introduce fuzz tests for core (#844)
This PR introduces fuzz tests and address #592
2018-03-22 16:53:47 +00:00

34 lines
656 B
TOML

[package]
name = "grin_core-fuzz"
version = "0.0.1"
authors = ["Automatically generated"]
publish = false
[package.metadata]
cargo-fuzz = true
[dependencies]
grin_core = { path = ".."}
grin_keychain = { path = "../../keychain"}
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"