mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
a14a8e3123
* WIP remove failure from all `Cargo.toml` * WIP remove `extern crate failure_derive` * Use `thiserror` to fix all errors * StoreErr is still a tuple * Remove another set of unnecessary `.into()`s * update fuzz tests * update pool/fuzz dependencies in cargo.lock * small changes based on feedback Co-authored-by: trevyn <trevyn-git@protonmail.com>
43 lines
869 B
TOML
43 lines
869 B
TOML
[package]
|
|
name = "grin_core-fuzz"
|
|
version = "0.0.3"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = "0.4.0"
|
|
grin_core = { path = ".."}
|
|
grin_keychain = { path = "../../keychain"}
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "transaction_read_v1"
|
|
path = "fuzz_targets/transaction_read_v1.rs"
|
|
|
|
[[bin]]
|
|
name = "transaction_read_v2"
|
|
path = "fuzz_targets/transaction_read_v2.rs"
|
|
|
|
[[bin]]
|
|
name = "gen-corpus"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "block_read_v1"
|
|
path = "fuzz_targets/block_read_v1.rs"
|
|
|
|
[[bin]]
|
|
name = "block_read_v2"
|
|
path = "fuzz_targets/block_read_v2.rs"
|
|
|
|
[[bin]]
|
|
name = "compact_block_read_v1"
|
|
path = "fuzz_targets/compact_block_read_v1.rs"
|
|
|
|
[[bin]]
|
|
name = "compact_block_read_v2"
|
|
path = "fuzz_targets/compact_block_read_v2.rs"
|