mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31: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>
25 lines
542 B
TOML
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
|