X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=fuzz%2FCargo.toml;h=19d832e876e5f4e583ad2dff7446d365cd490b6e;hb=39b562e0092007ea67fa32b5b47090c988086248;hp=c4ed4c70346d5059a7121e2840f45720ae8f8751;hpb=50ed320503bb7077dd73061117f1c73ed8bdc4bd;p=rust-lightning diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index c4ed4c70..19d832e8 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -13,15 +13,17 @@ cargo-fuzz = true [features] afl_fuzz = ["afl"] honggfuzz_fuzz = ["honggfuzz"] +libfuzzer_fuzz = ["libfuzzer-sys"] [dependencies] afl = { version = "0.4", optional = true } lightning = { path = "..", features = ["fuzztarget"] } -bitcoin = { version = "0.15", features = ["fuzztarget"] } -bitcoin_hashes = { git = "https://github.com/TheBlueMatt/bitcoin_hashes", branch = "rust-lightning-dep", features=["fuzztarget"] } +bitcoin = { version = "0.20", features = ["fuzztarget"] } +bitcoin_hashes = { version = "0.7", features = ["fuzztarget"] } hex = "0.3" honggfuzz = { version = "0.5", optional = true } -secp256k1 = { version = "0.11", features=["fuzztarget"] } +secp256k1 = { version = "0.15", features=["fuzztarget"] } +libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git", optional = true } [build-dependencies] cc = "1.0" @@ -42,6 +44,10 @@ path = "fuzz_targets/peer_crypt_target.rs" name = "full_stack_target" path = "fuzz_targets/full_stack_target.rs" +[[bin]] +name = "chanmon_fail_consistency" +path = "fuzz_targets/chanmon_fail_consistency.rs" + [[bin]] name = "router_target" path = "fuzz_targets/router_target.rs"