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, };