2019-02-20 03:16:07 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "ssz-fuzz"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Automatically generated"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
2019-02-21 02:43:09 +00:00
|
|
|
[dependencies]
|
|
|
|
ethereum-types = "0.4.0"
|
|
|
|
|
2019-02-20 03:16:07 +00:00
|
|
|
[dependencies.ssz]
|
|
|
|
path = ".."
|
|
|
|
[dependencies.libfuzzer-sys]
|
|
|
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
2019-02-21 02:43:09 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_bool_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_bool_decode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_bool_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_bool_encode.rs"
|
|
|
|
|
2019-02-20 03:16:07 +00:00
|
|
|
[[bin]]
|
2019-02-20 04:34:15 +00:00
|
|
|
name = "fuzz_target_u8_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u8_decode.rs"
|
2019-02-20 04:03:32 +00:00
|
|
|
|
2019-02-20 05:15:30 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u8_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u8_encode.rs"
|
|
|
|
|
2019-02-20 04:03:32 +00:00
|
|
|
[[bin]]
|
2019-02-20 04:34:15 +00:00
|
|
|
name = "fuzz_target_u16_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u16_decode.rs"
|
|
|
|
|
2019-02-20 05:15:30 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u16_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u16_encode.rs"
|
|
|
|
|
2019-02-20 04:34:15 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u32_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u32_decode.rs"
|
|
|
|
|
2019-02-20 05:15:30 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u32_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u32_encode.rs"
|
|
|
|
|
2019-02-20 04:34:15 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u64_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u64_decode.rs"
|
2019-02-20 05:15:30 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_u64_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_u64_encode.rs"
|
2019-02-20 05:43:30 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_usize_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_usize_decode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_usize_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_usize_encode.rs"
|
2019-02-21 02:43:09 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_hash256_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_hash256_decode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_hash256_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_hash256_encode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_address_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_address_decode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_address_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_address_encode.rs"
|
2019-02-21 03:23:21 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_vec_decode"
|
|
|
|
path = "fuzz_targets/fuzz_target_vec_decode.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "fuzz_target_vec_encode"
|
|
|
|
path = "fuzz_targets/fuzz_target_vec_encode.rs"
|