grin/pool/fuzz/Cargo.toml
Yeastplume a14a8e3123
Thiserror changeover (#3728)
* 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>
2022-07-14 11:08:13 +01:00

25 lines
542 B
TOML

[package]
name = "grin_pool_fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[dependencies]
chrono = "0.4.11"
libfuzzer-sys = "0.4.0"
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