97 lines
1.9 KiB
TOML
97 lines
1.9 KiB
TOML
[package]
|
|
name = "bitcoin-fuzz"
|
|
edition = "2018"
|
|
version = "0.0.1"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[features]
|
|
afl_fuzz = ["afl"]
|
|
honggfuzz_fuzz = ["honggfuzz"]
|
|
|
|
[dependencies]
|
|
honggfuzz = { version = "0.5", optional = true, default-features = false }
|
|
afl = { version = "0.4", optional = true }
|
|
bitcoin = { version = "0.30.0", features = [ "serde" ] }
|
|
|
|
rust-crypto = "0.2"
|
|
serde = { version = "1.0.103", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
serde_cbor = "0.9"
|
|
|
|
[[bin]]
|
|
name = "deserialize_block"
|
|
path = "fuzz_targets/bitcoin/deserialize_block.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_script"
|
|
path = "fuzz_targets/bitcoin/deserialize_script.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_transaction"
|
|
path = "fuzz_targets/bitcoin/deserialize_transaction.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_prefilled_transaction"
|
|
path = "fuzz_targets/bitcoin/deserialize_prefilled_transaction.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_address"
|
|
path = "fuzz_targets/bitcoin/deserialize_address.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_amount"
|
|
path = "fuzz_targets/bitcoin/deserialize_amount.rs"
|
|
|
|
[[bin]]
|
|
name = "outpoint_string"
|
|
path = "fuzz_targets/bitcoin/outpoint_string.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_psbt"
|
|
path = "fuzz_targets/bitcoin/deserialize_psbt.rs"
|
|
|
|
[[bin]]
|
|
name = "deser_net_msg"
|
|
path = "fuzz_targets/bitcoin/deser_net_msg.rs"
|
|
|
|
[[bin]]
|
|
name = "script_bytes_to_asm_fmt"
|
|
path = "fuzz_targets/bitcoin/script_bytes_to_asm_fmt.rs"
|
|
|
|
[[bin]]
|
|
name = "deserialize_witness"
|
|
path = "fuzz_targets/bitcoin/deserialize_witness.rs"
|
|
|
|
|
|
[[bin]]
|
|
name = "sha1"
|
|
path = "fuzz_targets/hashes/sha1.rs"
|
|
|
|
[[bin]]
|
|
name = "ripemd160"
|
|
path = "fuzz_targets/hashes/ripemd160.rs"
|
|
|
|
[[bin]]
|
|
name = "sha256"
|
|
path = "fuzz_targets/hashes/sha256.rs"
|
|
|
|
[[bin]]
|
|
name = "sha512"
|
|
path = "fuzz_targets/hashes/sha512.rs"
|
|
|
|
[[bin]]
|
|
name = "sha512_256"
|
|
path = "fuzz_targets/hashes/sha512_256.rs"
|
|
|
|
[[bin]]
|
|
name = "cbor"
|
|
path = "fuzz_targets/hashes/cbor.rs"
|
|
|
|
[[bin]]
|
|
name = "json"
|
|
path = "fuzz_targets/hashes/json.rs"
|