From: Matt Corallo Date: Sat, 27 Feb 2021 04:45:41 +0000 (-0500) Subject: Use lowmemory mode for secp256k1 fuzzing, reducing memcpy time X-Git-Tag: v0.0.13~18^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=rust-lightning;a=commitdiff_plain;h=33da6656474d2eae36f16195b73b33ce9832e570 Use lowmemory mode for secp256k1 fuzzing, reducing memcpy time --- diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 0ac1b5ce..fc8e6d59 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -19,7 +19,7 @@ stdin_fuzz = [] [dependencies] afl = { version = "0.4", optional = true } lightning = { path = "../lightning", features = ["fuzztarget"] } -bitcoin = { version = "0.26", features = ["fuzztarget"] } +bitcoin = { version = "0.26", features = ["fuzztarget", "secp-lowmemory"] } hex = "0.3" honggfuzz = { version = "0.5", optional = true } libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git", optional = true }