From c6c93b57853468fb3f99deb515afde21afba2bc1 Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Wed, 25 Oct 2023 16:36:20 +0200 Subject: [PATCH] aa (#1638) --- libafl/src/mutators/scheduled.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/libafl/src/mutators/scheduled.rs b/libafl/src/mutators/scheduled.rs index 059c265d1e..be6d9f1783 100644 --- a/libafl/src/mutators/scheduled.rs +++ b/libafl/src/mutators/scheduled.rs @@ -16,7 +16,18 @@ use serde::{Deserialize, Serialize}; use super::MutationId; use crate::{ corpus::{Corpus, CorpusId}, - mutators::{mutations::*, token_mutations::*, MutationResult, Mutator, MutatorsTuple}, + mutators::{ + mutations::{ + BitFlipMutator, ByteAddMutator, ByteDecMutator, ByteFlipMutator, ByteIncMutator, + ByteInterestingMutator, ByteNegMutator, ByteRandMutator, BytesCopyMutator, + BytesDeleteMutator, BytesExpandMutator, BytesInsertCopyMutator, BytesInsertMutator, + BytesRandInsertMutator, BytesRandSetMutator, BytesSetMutator, BytesSwapMutator, + CrossoverInsertMutator, CrossoverReplaceMutator, DwordAddMutator, + DwordInterestingMutator, QwordAddMutator, WordAddMutator, WordInterestingMutator, + }, + token_mutations::{TokenInsert, TokenReplace}, + MutationResult, Mutator, MutatorsTuple, + }, state::{HasCorpus, HasMetadata, HasRand}, Error, };