
* add LogMutation trait * change &self to &mut self * move self.scheduler out of StdFuzzer * reorder generics?, implement post_exec * append metadata to the corresponding testcase in the corpus * turn mutations into Mutators * impl Named for mutations * add LoggerScheduledMutator, add fn get_name() to MutatorTuple * Fix BytesDeleteMutator, and format * remove TupleList bound on Tail * turn TokenInsert, TokenReplace into Mutator, fill havoc_mutations * libfuzzer_libpng * libfuzzer_libpng_cmpalloc * libfuzzer_libmozjpeg * fix tests * fix libfuzzer_libmozjpeg * fix tests * fix LoggerScheduledMutator::mutate * use vec<u8> instead of String * fix post_exec and get_name * fmt * NamedTuple and HasNameIdTuple * always clear mutations log * fix tests * format * remove libafl_targets default features * use vec<string> instead of vec<vec<u8>> * add alloc::string::String * format Co-authored-by: Andrea Fioraldi <andreafioraldi@gmail.com>
16 lines
280 B
TOML
16 lines
280 B
TOML
[package]
|
|
name = "libafl_targets"
|
|
version = "0.1.0"
|
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
sancov = []
|
|
libfuzzer_compatibility = []
|
|
|
|
[build-dependencies]
|
|
cc = { version = "1.0", features = ["parallel"] }
|
|
|
|
[dependencies]
|