Fix fuzzing builds xcm-fuzz and erasure-coding fuzzer (#6153)

* fix fuzzing builds

* change Cargo.lock

* change honggfuzz

Co-authored-by: commented-line <venkatamaturi98@gmail.com>
This commit is contained in:
code-terror
2022-10-16 14:21:08 -07:00
committed by GitHub
parent a8b79a3b48
commit 151d4a97bb
5 changed files with 8 additions and 15 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0" }
honggfuzz = "0.5.54"
honggfuzz = "0.5.55"
scale-info = { version = "2.1.2", features = ["derive"] }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
@@ -122,7 +122,7 @@ fn main() {
#[cfg(fuzzing)]
{
loop {
fuzz!(|data: &[u8]| {
honggfuzz::fuzz!(|data: &[u8]| {
run_one_input(data);
});
}