This commit is contained in:
Dongjia "toka" Zhang 2023-10-25 16:10:10 +02:00 committed by GitHub
parent 406e77faa9
commit f34bab2486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -14,10 +14,9 @@ use libafl_bolts::{
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use super::MutationId; use super::MutationId;
pub use crate::mutators::{mutations::*, token_mutations::*};
use crate::{ use crate::{
corpus::{Corpus, CorpusId}, corpus::{Corpus, CorpusId},
mutators::{MutationResult, Mutator, MutatorsTuple}, mutators::{mutations::*, token_mutations::*, MutationResult, Mutator, MutatorsTuple},
state::{HasCorpus, HasMetadata, HasRand}, state::{HasCorpus, HasMetadata, HasRand},
Error, Error,
}; };

View File

@ -850,7 +850,7 @@ pub mod bolts_prelude {
pub use super::staterestore::*; pub use super::staterestore::*;
#[cfg(feature = "alloc")] #[cfg(feature = "alloc")]
pub use super::{anymap::*, llmp::*, ownedref::*, rands::*, serdeany::*, shmem::*, tuples::*}; pub use super::{anymap::*, llmp::*, ownedref::*, rands::*, serdeany::*, shmem::*, tuples::*};
pub use super::{cpu::*, os::*, rands::*}; pub use super::{cpu::*, os::*};
} }
#[cfg(feature = "python")] #[cfg(feature = "python")]