This commit is contained in:
Dongjia "toka" Zhang 2023-10-25 16:36:20 +02:00 committed by GitHub
parent fdfa5b2d48
commit c6c93b5785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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