Bump to 0.5.0

This commit is contained in:
Andrea Fioraldi 2021-07-05 14:09:43 +02:00
parent 849ff1fa04
commit a1fc2a5453
16 changed files with 22 additions and 22 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "forkserver_simple"
version = "0.4.0"
version = "0.5.0"
authors = ["tokatoka <tokazerkje@outlook.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "frida_libpng"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"
build = "build.rs"
@ -24,8 +24,8 @@ which = "4.1"
libafl = { path = "../../libafl/", features = [ "std", "llmp_compression", "llmp_bind_public" ] } #, "llmp_small_maps", "llmp_debug"]}
capstone = "0.8.0"
frida-gum = { version = "0.5.2", features = [ "auto-download", "backtrace", "event-sink", "invocation-listener"] }
libafl_frida = { path = "../../libafl_frida", version = "0.4.0", features = ["cmplog"] }
libafl_targets = { path = "../../libafl_targets", version = "0.4.0" , features = ["sancov_cmplog"] }
libafl_frida = { path = "../../libafl_frida", version = "0.5.0", features = ["cmplog"] }
libafl_targets = { path = "../../libafl_targets", version = "0.5.0" , features = ["sancov_cmplog"] }
lazy_static = "1.4.0"
libc = "0.2"
libloading = "0.7.0"

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "generic_inmemory"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libmozjpeg"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_launcher"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_reachability"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_stb_image"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
edition = "2018"
build = "build.rs"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
description = "Slot your own fuzzers together and extend their features using Rust"
documentation = "https://docs.rs/libafl"
@ -53,7 +53,7 @@ path = "./examples/llmp_test/main.rs"
required-features = ["std"]
[dependencies]
libafl_derive = { optional = true, path = "../libafl_derive", version = "0.4.0" }
libafl_derive = { optional = true, path = "../libafl_derive", version = "0.5.0" }
tuple_list = "0.1.2"
hashbrown = { version = "0.9", features = ["serde", "ahash-compile-time-rng"] } # A faster hashmap, nostd compatible
num = "0.4.0"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_cc"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
description = "Commodity library to wrap compilers and link LibAFL"
documentation = "https://docs.rs/libafl_cc"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_derive"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
description = "Derive proc-macro crate for LibAFL"
documentation = "https://docs.rs/libafl_derive"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_frida"
version = "0.4.0"
version = "0.5.0"
authors = ["s1341 <github@shmarya.net>"]
description = "Frida backend library for LibAFL"
documentation = "https://docs.rs/libafl_frida"
@ -19,8 +19,8 @@ cmplog = []
cc = { version = "1.0", features = ["parallel"] }
[dependencies]
libafl = { path = "../libafl", version = "0.4.0", features = ["std", "libafl_derive"] }
libafl_targets = { path = "../libafl_targets", version = "0.4.0", features = ["sancov_cmplog"] }
libafl = { path = "../libafl", version = "0.5.0", features = ["std", "libafl_derive"] }
libafl_targets = { path = "../libafl_targets", version = "0.5.0", features = ["sancov_cmplog"] }
nix = "0.20.0"
libc = "0.2.92"
hashbrown = "0.11"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_targets"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
description = "Common code for target instrumentation that can be used combined with LibAFL"
documentation = "https://docs.rs/libafl_targets"
@ -25,6 +25,6 @@ cc = { version = "1.0", features = ["parallel"] }
[dependencies]
rangemap = "0.1.10"
libafl = { path = "../libafl", version = "0.4.0", features = [] }
libafl = { path = "../libafl", version = "0.5.0", features = [] }
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
# serde-big-array = "0.3.2"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_tests"
version = "0.4.0"
version = "0.5.0"
authors = ["tokatoka <tokazerkje@outlook.com>"]
edition = "2018"