mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
34 lines
691 B
TOML
34 lines
691 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"}
|
|
[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"
|