grin/pool/fuzz/Cargo.toml
Nym Seddon 6a012d7e5b
Add TransactionPool fuzz driver (#3396)
Add fuzz driver for fuzzing adding transactions to the main and stem
TransactionPool

Co-authored-by: Nym Seddon <unseddd@shh.xyz>
2020-08-17 14:05:25 -04:00

28 lines
578 B
TOML

[package]
name = "grin_pool_fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
chrono = "0.4.11"
libfuzzer-sys = "0.3"
grin_chain = { path = "../../chain" }
grin_core = { path = "../../core" }
grin_keychain = { path = "../../keychain" }
grin_pool = { path = ".." }
grin_util = { path = "../../util" }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "transaction_pool"
path = "fuzz_targets/transaction_pool.rs"
test = false
doc = false