2017-06-07 08:19:25 +00:00
|
|
|
[package]
|
|
|
|
name = "bitcoin-fuzz"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Automatically generated"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
2018-03-20 15:55:14 +00:00
|
|
|
[features]
|
|
|
|
afl_fuzz = ["afl"]
|
|
|
|
honggfuzz_fuzz = ["honggfuzz"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-30 17:19:39 +00:00
|
|
|
honggfuzz = { version = "0.5", optional = true, default-features = false }
|
2018-09-06 19:52:38 +00:00
|
|
|
afl = { version = "0.4", optional = true }
|
2021-07-29 06:13:25 +00:00
|
|
|
bitcoin = { path = ".." }
|
2017-06-07 08:19:25 +00:00
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
|
|
|
[[bin]]
|
2018-03-20 15:55:14 +00:00
|
|
|
name = "deserialize_block"
|
|
|
|
path = "fuzz_targets/deserialize_block.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_script"
|
|
|
|
path = "fuzz_targets/deserialize_script.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_transaction"
|
|
|
|
path = "fuzz_targets/deserialize_transaction.rs"
|
2018-03-20 16:32:39 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_address"
|
|
|
|
path = "fuzz_targets/deserialize_address.rs"
|
2018-08-21 20:21:29 +00:00
|
|
|
|
2019-04-15 14:37:25 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_amount"
|
|
|
|
path = "fuzz_targets/deserialize_amount.rs"
|
|
|
|
|
2018-10-12 23:21:41 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "outpoint_string"
|
|
|
|
path = "fuzz_targets/outpoint_string.rs"
|
2018-08-10 20:40:48 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_psbt"
|
|
|
|
path = "fuzz_targets/deserialize_psbt.rs"
|
2019-05-21 15:36:50 +00:00
|
|
|
|
|
|
|
[[bin]]
|
2019-05-29 20:27:34 +00:00
|
|
|
name = "deser_net_msg"
|
|
|
|
path = "fuzz_targets/deser_net_msg.rs"
|
2020-04-30 23:20:28 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "uint128_fuzz"
|
|
|
|
path = "fuzz_targets/uint128_fuzz.rs"
|
2021-09-30 12:35:05 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "script_bytes_to_asm_fmt"
|
|
|
|
path = "fuzz_targets/script_bytes_to_asm_fmt.rs"
|
2021-10-05 13:09:23 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "deserialize_witness"
|
|
|
|
path = "fuzz_targets/deserialize_witness.rs"
|