From febb154e49847822a65f4d2d55d01e1f00f32fe8 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Thu, 3 Aug 2023 01:58:09 +0200 Subject: [PATCH] Fix merge fail for baby_fuzzer / bolts (#1394) * Fix merge for bolts * warning fix * warning fix --- fuzzers/baby_fuzzer/Cargo.toml | 1 + fuzzers/baby_fuzzer/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fuzzers/baby_fuzzer/Cargo.toml b/fuzzers/baby_fuzzer/Cargo.toml index 4535236ab8..fe557e3466 100644 --- a/fuzzers/baby_fuzzer/Cargo.toml +++ b/fuzzers/baby_fuzzer/Cargo.toml @@ -21,3 +21,4 @@ debug = true [dependencies] libafl = { path = "../../libafl/" } +libafl_bolts = { path = "../../libafl_bolts/" } diff --git a/fuzzers/baby_fuzzer/src/main.rs b/fuzzers/baby_fuzzer/src/main.rs index 8305cffecd..90975578f1 100644 --- a/fuzzers/baby_fuzzer/src/main.rs +++ b/fuzzers/baby_fuzzer/src/main.rs @@ -7,7 +7,6 @@ use libafl::monitors::tui::{ui::TuiUI, TuiMonitor}; #[cfg(not(feature = "tui"))] use libafl::monitors::SimpleMonitor; use libafl::{ - bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice}, corpus::{InMemoryCorpus, OnDiskCorpus}, events::SimpleEventManager, executors::{inprocess::InProcessExecutor, ExitKind}, @@ -21,6 +20,7 @@ use libafl::{ stages::mutational::StdMutationalStage, state::StdState, }; +use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice}; /// Coverage map with explicit assignments due to the lack of instrumentation static mut SIGNALS: [u8; 16] = [0; 16];