X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=fuzz%2FCargo.toml;h=53ff1cbd7a18c64b67063cdccff68ae5b23b557f;hb=d7ac68701f6d169438b0337919fde7c715b2e94c;hp=c8ed4b613cf5d795eae7047a4377f0e937d510bb;hpb=3a066ccbf27ea249dcd7403530cda33318ebb3e7;p=rust-lightning diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index c8ed4b61..53ff1cbd 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -6,7 +6,6 @@ publish = false # Because the function is unused it gets dropped before we link lightning, so # we have to duplicate build.rs here. Note that this is only required for # fuzztarget mode. -build = "../build.rs" [package.metadata] cargo-fuzz = true @@ -14,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 = { version = "0.16", features = ["fuzztarget"] } +bitcoin_hashes = { version = "0.2", features=["fuzztarget"] } hex = "0.3" honggfuzz = { version = "0.5", optional = true } -rust-crypto = "0.2" -secp256k1 = { version = "0.11", features=["fuzztarget"] } +secp256k1 = { version = "0.12", features=["fuzztarget"] } +libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git", optional = true } [build-dependencies] cc = "1.0"