2018-03-22 19:53:47 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_core-fuzz"
|
2018-08-09 12:37:11 +03:00
|
|
|
version = "0.0.3"
|
Idiomatic cargo toml (#862)
* Specify versions SemVer-style
- slog and serde
* Comments for not update-able pre-1.0 crates:
- urlencoded at "0.5" since 0.6+ lacks trait `plugin::Plugin<iron::Request<'_, '_>>`
* alpha-sort deps
* Specify versions SemVer-style
- backtrace, bitflags, blake2-rfc, bodyparser, built, byteorder
- chrono, clap, demonize, enum_primitive, env_logger
- failure, failure_derive, futures
- hyper, iron, itertools, lazy_static, libc
- memmap, mount, net2, num_bigint, prettytable-rs
- rand, regex, rocksdb, router, siphasher
- term, time, tokio-core, tokio-retry, urlencoded, uuid, walkdir, zip
2018-03-25 20:44:27 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
2018-03-22 19:53:47 +03:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
grin_core = { path = ".."}
|
|
|
|
grin_keychain = { path = "../../keychain"}
|
2018-08-09 12:37:11 +03:00
|
|
|
[dependencies.libfuzzer-sys]
|
|
|
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
2018-03-22 19:53:47 +03:00
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
[[bin]]
|
2019-10-03 10:08:40 +03:00
|
|
|
name = "transaction_read_v1"
|
|
|
|
path = "fuzz_targets/transaction_read_v1.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "transaction_read_v2"
|
|
|
|
path = "fuzz_targets/transaction_read_v2.rs"
|
2018-03-22 19:53:47 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "gen-corpus"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
2019-10-03 10:08:40 +03:00
|
|
|
name = "block_read_v1"
|
|
|
|
path = "fuzz_targets/block_read_v2.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"
|
2018-03-22 19:53:47 +03:00
|
|
|
|
|
|
|
[[bin]]
|
2019-10-03 10:08:40 +03:00
|
|
|
name = "compact_block_read_v2"
|
|
|
|
path = "fuzz_targets/compact_block_read_v2.rs"
|