diff --git a/Cargo.toml b/Cargo.toml index 7464190660..a025aeba60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,35 +50,35 @@ exclude = [ ] [workspace.package] -version = "0.15.0" +version = "0.15.1" license = "MIT OR Apache-2.0" [workspace.dependencies] # Internal deps -libafl = { path = "./libafl", version = "0.15.0", default-features = false } -libafl_bolts = { path = "./libafl_bolts", version = "0.15.0", default-features = false } -libafl_cc = { path = "./libafl_cc", version = "0.15.0", default-features = false } -symcc_runtime = { path = "./libafl_concolic/symcc_runtime", version = "0.15.0", default-features = false } -symcc_libafl = { path = "./libafl_concolic/symcc_libafl", version = "0.15.0", default-features = false } -libafl_derive = { path = "./libafl_derive", version = "0.15.0", default-features = false } -libafl_frida = { path = "./libafl_frida", version = "0.15.0", default-features = false } -libafl_intelpt = { path = "./libafl_intelpt", version = "0.15.0", default-features = false } -libafl_libfuzzer = { path = "./libafl_libfuzzer", version = "0.15.0", default-features = false } -libafl_nyx = { path = "./libafl_nyx", version = "0.15.0", default-features = false } -libafl_targets = { path = "./libafl_targets", version = "0.15.0", default-features = false } -libafl_tinyinst = { path = "./libafl_tinyinst", version = "0.15.0", default-features = false } -libafl_qemu = { path = "./libafl_qemu", version = "0.15.0", default-features = false } -libafl_qemu_build = { path = "./libafl_qemu/libafl_qemu_build", version = "0.15.0", default-features = false } -libafl_qemu_sys = { path = "./libafl_qemu/libafl_qemu_sys", version = "0.15.0", default-features = false } -libafl_sugar = { path = "./libafl_sugar", version = "0.15.0", default-features = false } -dump_constraints = { path = "./libafl_concolic/test/dump_constraints", version = "0.15.0", default-features = false } -runtime_test = { path = "./libafl_concolic/test/runtime_test", version = "0.15.0", default-features = false } -build_and_test_fuzzers = { path = "./utils/build_and_test_fuzzers", version = "0.15.0", default-features = false } -deexit = { path = "./utils/deexit", version = "0.15.0", default-features = false } -drcov_utils = { path = "./utils/drcov_utils", version = "0.15.0", default-features = false } -construct_automata = { path = "./utils/gramatron/construct_automata", version = "0.15.0", default-features = false } -libafl_benches = { path = "./utils/libafl_benches", version = "0.15.0", default-features = false } -libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.0", default-features = false } +libafl = { path = "./libafl", version = "0.15.1", default-features = false } +libafl_bolts = { path = "./libafl_bolts", version = "0.15.1", default-features = false } +libafl_cc = { path = "./libafl_cc", version = "0.15.1", default-features = false } +symcc_runtime = { path = "./libafl_concolic/symcc_runtime", version = "0.15.1", default-features = false } +symcc_libafl = { path = "./libafl_concolic/symcc_libafl", version = "0.15.1", default-features = false } +libafl_derive = { path = "./libafl_derive", version = "0.15.1", default-features = false } +libafl_frida = { path = "./libafl_frida", version = "0.15.1", default-features = false } +libafl_intelpt = { path = "./libafl_intelpt", version = "0.15.1", default-features = false } +libafl_libfuzzer = { path = "./libafl_libfuzzer", version = "0.15.1", default-features = false } +libafl_nyx = { path = "./libafl_nyx", version = "0.15.1", default-features = false } +libafl_targets = { path = "./libafl_targets", version = "0.15.1", default-features = false } +libafl_tinyinst = { path = "./libafl_tinyinst", version = "0.15.1", default-features = false } +libafl_qemu = { path = "./libafl_qemu", version = "0.15.1", default-features = false } +libafl_qemu_build = { path = "./libafl_qemu/libafl_qemu_build", version = "0.15.1", default-features = false } +libafl_qemu_sys = { path = "./libafl_qemu/libafl_qemu_sys", version = "0.15.1", default-features = false } +libafl_sugar = { path = "./libafl_sugar", version = "0.15.1", default-features = false } +dump_constraints = { path = "./libafl_concolic/test/dump_constraints", version = "0.15.1", default-features = false } +runtime_test = { path = "./libafl_concolic/test/runtime_test", version = "0.15.1", default-features = false } +build_and_test_fuzzers = { path = "./utils/build_and_test_fuzzers", version = "0.15.1", default-features = false } +deexit = { path = "./utils/deexit", version = "0.15.1", default-features = false } +drcov_utils = { path = "./utils/drcov_utils", version = "0.15.1", default-features = false } +construct_automata = { path = "./utils/gramatron/construct_automata", version = "0.15.1", default-features = false } +libafl_benches = { path = "./utils/libafl_benches", version = "0.15.1", default-features = false } +libafl_jumper = { path = "./utils/libafl_jumper", version = "0.15.1", default-features = false } # External deps ahash = { version = "0.8.11", default-features = false } # The hash function already used in hashbrown diff --git a/bindings/pylibafl/Cargo.toml b/bindings/pylibafl/Cargo.toml index a068e5bdec..b13c6cf5ad 100644 --- a/bindings/pylibafl/Cargo.toml +++ b/bindings/pylibafl/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pylibafl" description = "Python bindings for LibAFL" -version = "0.15.0" +version = "0.15.1" license = "MIT OR Apache-2.0" repository = "https://github.com/AFLplusplus/LibAFL/" keywords = ["fuzzing", "testing", "security", "python"] @@ -11,15 +11,15 @@ categories = ["development-tools::testing", "emulators", "embedded", "os"] [dependencies] pyo3 = { version = "0.23.2", features = ["extension-module"] } pyo3-log = { version = "0.12.0" } -libafl_sugar = { path = "../../libafl_sugar", version = "0.15.0", features = [ +libafl_sugar = { path = "../../libafl_sugar", version = "0.15.1", features = [ "python", ] } -libafl_bolts = { path = "../../libafl_bolts", version = "0.15.0", features = [ +libafl_bolts = { path = "../../libafl_bolts", version = "0.15.1", features = [ "python", ] } [target.'cfg(target_os = "linux")'.dependencies] -libafl_qemu = { path = "../../libafl_qemu", version = "0.15.0", features = [ +libafl_qemu = { path = "../../libafl_qemu", version = "0.15.1", features = [ "python", ] } diff --git a/bindings/pylibafl/pyproject.toml b/bindings/pylibafl/pyproject.toml index bc5505cd37..bd6ad1c12e 100644 --- a/bindings/pylibafl/pyproject.toml +++ b/bindings/pylibafl/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "PyLibAFL" -version = "0.15.0" +version = "0.15.1" description = "Advanced Fuzzing Library for Python" readme = "README.md" requires-python = ">=3.8" diff --git a/docs/listings/baby_fuzzer/listing-01/Cargo.toml b/docs/listings/baby_fuzzer/listing-01/Cargo.toml index 92c86b3809..957cb8eadf 100644 --- a/docs/listings/baby_fuzzer/listing-01/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-01/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_01" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/docs/listings/baby_fuzzer/listing-02/Cargo.toml b/docs/listings/baby_fuzzer/listing-02/Cargo.toml index c3eb7f3348..087a385ee5 100644 --- a/docs/listings/baby_fuzzer/listing-02/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-02/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_02" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/docs/listings/baby_fuzzer/listing-03/Cargo.toml b/docs/listings/baby_fuzzer/listing-03/Cargo.toml index dab0e3a18e..28f8944f72 100644 --- a/docs/listings/baby_fuzzer/listing-03/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-03/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_03" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/docs/listings/baby_fuzzer/listing-04/Cargo.toml b/docs/listings/baby_fuzzer/listing-04/Cargo.toml index 226c0b983a..be36fb0430 100644 --- a/docs/listings/baby_fuzzer/listing-04/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-04/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_04" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/docs/listings/baby_fuzzer/listing-05/Cargo.toml b/docs/listings/baby_fuzzer/listing-05/Cargo.toml index 81db66b0f7..e66d2326c4 100644 --- a/docs/listings/baby_fuzzer/listing-05/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-05/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_05" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/docs/listings/baby_fuzzer/listing-06/Cargo.toml b/docs/listings/baby_fuzzer/listing-06/Cargo.toml index 279f350090..8566aa5e73 100644 --- a/docs/listings/baby_fuzzer/listing-06/Cargo.toml +++ b/docs/listings/baby_fuzzer/listing-06/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_listing_06" -version = "0.15.0" +version = "0.15.1" authors = ["Your Name "] edition = "2018" diff --git a/fuzzers/baby/baby_fuzzer_custom_executor/Cargo.toml b/fuzzers/baby/baby_fuzzer_custom_executor/Cargo.toml index 9ef4c0b2a4..35e0307201 100644 --- a/fuzzers/baby/baby_fuzzer_custom_executor/Cargo.toml +++ b/fuzzers/baby/baby_fuzzer_custom_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzer_custom_executor" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/baby/baby_fuzzer_minimizing/Cargo.toml b/fuzzers/baby/baby_fuzzer_minimizing/Cargo.toml index ee97f267d3..d7c2c0e60d 100644 --- a/fuzzers/baby/baby_fuzzer_minimizing/Cargo.toml +++ b/fuzzers/baby/baby_fuzzer_minimizing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_minimizing" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/baby/baby_fuzzer_swap_differential/Cargo.toml b/fuzzers/baby/baby_fuzzer_swap_differential/Cargo.toml index f289cdca36..333f3ce50e 100644 --- a/fuzzers/baby/baby_fuzzer_swap_differential/Cargo.toml +++ b/fuzzers/baby/baby_fuzzer_swap_differential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_swap_differential" -version = "0.15.0" +version = "0.15.1" authors = ["Addison Crump "] edition = "2021" default-run = "fuzzer_sd" diff --git a/fuzzers/baby/baby_fuzzer_unicode/Cargo.toml b/fuzzers/baby/baby_fuzzer_unicode/Cargo.toml index a183a14698..93904529d1 100644 --- a/fuzzers/baby/baby_fuzzer_unicode/Cargo.toml +++ b/fuzzers/baby/baby_fuzzer_unicode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_unicode" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_fork_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_fork_executor/Cargo.toml index 184d4b6c36..55e7c37b41 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_fork_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_fork_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c_code_with_fork_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" [features] diff --git a/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_inprocess_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_inprocess_executor/Cargo.toml index b6ce0b6c8f..a39fbb947e 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_inprocess_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/c_code_with_inprocess_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c_code_with_inprocess_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" [features] diff --git a/fuzzers/baby/backtrace_baby_fuzzers/command_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/command_executor/Cargo.toml index edc8567794..c4c8755aa8 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/command_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/command_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" [features] diff --git a/fuzzers/baby/backtrace_baby_fuzzers/forkserver_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/forkserver_executor/Cargo.toml index d1f9f29050..f3d56bdd63 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/forkserver_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/forkserver_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forkserver_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" diff --git a/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_fork_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_fork_executor/Cargo.toml index fc99b48792..e83ad1f269 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_fork_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_fork_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_code_with_fork_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" [features] diff --git a/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_inprocess_executor/Cargo.toml b/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_inprocess_executor/Cargo.toml index 40724e6101..3e5ea197c6 100644 --- a/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_inprocess_executor/Cargo.toml +++ b/fuzzers/baby/backtrace_baby_fuzzers/rust_code_with_inprocess_executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_code_with_inprocess_executor" -version = "0.15.0" +version = "0.15.1" edition = "2021" [features] diff --git a/fuzzers/baby/tutorial/Cargo.toml b/fuzzers/baby/tutorial/Cargo.toml index 7b14a2cfc1..3c1cb4afae 100644 --- a/fuzzers/baby/tutorial/Cargo.toml +++ b/fuzzers/baby/tutorial/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tutorial" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/frida_executable_libpng/Cargo.toml b/fuzzers/binary_only/frida_executable_libpng/Cargo.toml index 2c3ce6ad79..5ba7048f4b 100644 --- a/fuzzers/binary_only/frida_executable_libpng/Cargo.toml +++ b/fuzzers/binary_only/frida_executable_libpng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frida_executable_fuzzer" -version = "0.15.0" +version = "0.15.1" edition = "2021" [lib] diff --git a/fuzzers/binary_only/frida_libpng/Cargo.toml b/fuzzers/binary_only/frida_libpng/Cargo.toml index 6c068cf447..da44fd646b 100644 --- a/fuzzers/binary_only/frida_libpng/Cargo.toml +++ b/fuzzers/binary_only/frida_libpng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frida_fuzzer" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/frida_windows_gdiplus/Cargo.toml b/fuzzers/binary_only/frida_windows_gdiplus/Cargo.toml index 3fbabc9c58..960736f802 100644 --- a/fuzzers/binary_only/frida_windows_gdiplus/Cargo.toml +++ b/fuzzers/binary_only/frida_windows_gdiplus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frida_windows_gdiplus" -version = "0.15.0" +version = "0.15.1" authors = ["Richard Johnson "] edition = "2021" diff --git a/fuzzers/binary_only/fuzzbench_fork_qemu/Cargo.toml b/fuzzers/binary_only/fuzzbench_fork_qemu/Cargo.toml index f3561c0f90..b4b261497c 100644 --- a/fuzzers/binary_only/fuzzbench_fork_qemu/Cargo.toml +++ b/fuzzers/binary_only/fuzzbench_fork_qemu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_fork_qemu" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/fuzzbench_qemu/Cargo.toml b/fuzzers/binary_only/fuzzbench_qemu/Cargo.toml index d290d2b4c5..68ca513f9c 100644 --- a/fuzzers/binary_only/fuzzbench_qemu/Cargo.toml +++ b/fuzzers/binary_only/fuzzbench_qemu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_qemu" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", @@ -29,7 +29,7 @@ libafl_qemu = { path = "../../../libafl_qemu", features = [ "x86_64", "usermode", ] } -libafl_targets = { path = "../../../libafl_targets", version = "0.15.0" } +libafl_targets = { path = "../../../libafl_targets", version = "0.15.1" } env_logger = "0.11.5" log = { version = "0.4.22", features = ["release_max_level_info"] } diff --git a/fuzzers/binary_only/qemu_cmin/Cargo.toml b/fuzzers/binary_only/qemu_cmin/Cargo.toml index a4eac89718..f486c2337f 100644 --- a/fuzzers/binary_only/qemu_cmin/Cargo.toml +++ b/fuzzers/binary_only/qemu_cmin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_cmin" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/qemu_coverage/Cargo.toml b/fuzzers/binary_only/qemu_coverage/Cargo.toml index 6253da1735..36209274fe 100644 --- a/fuzzers/binary_only/qemu_coverage/Cargo.toml +++ b/fuzzers/binary_only/qemu_coverage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_coverage" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/qemu_launcher/Cargo.toml b/fuzzers/binary_only/qemu_launcher/Cargo.toml index 38935434a2..92560f9b20 100644 --- a/fuzzers/binary_only/qemu_launcher/Cargo.toml +++ b/fuzzers/binary_only/qemu_launcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_launcher" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/binary_only/tinyinst_simple/Cargo.toml b/fuzzers/binary_only/tinyinst_simple/Cargo.toml index bf6d725ccd..d987905f7e 100644 --- a/fuzzers/binary_only/tinyinst_simple/Cargo.toml +++ b/fuzzers/binary_only/tinyinst_simple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tinyinst_simple" -version = "0.15.0" +version = "0.15.1" edition = "2021" [dependencies] diff --git a/fuzzers/forkserver/baby_fuzzer_with_forkexecutor/Cargo.toml b/fuzzers/forkserver/baby_fuzzer_with_forkexecutor/Cargo.toml index a1363be80c..43065bfc5d 100644 --- a/fuzzers/forkserver/baby_fuzzer_with_forkexecutor/Cargo.toml +++ b/fuzzers/forkserver/baby_fuzzer_with_forkexecutor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_with_forkexecutor" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/forkserver/forkserver_libafl_cc/Cargo.toml b/fuzzers/forkserver/forkserver_libafl_cc/Cargo.toml index 09eb71cb34..f675ed8fd7 100644 --- a/fuzzers/forkserver/forkserver_libafl_cc/Cargo.toml +++ b/fuzzers/forkserver/forkserver_libafl_cc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forkserver_libafl_cc" -version = "0.15.0" +version = "0.15.1" authors = ["ergrelet "] edition = "2021" diff --git a/fuzzers/forkserver/fuzzbench_forkserver/Cargo.toml b/fuzzers/forkserver/fuzzbench_forkserver/Cargo.toml index 03578e6a02..c153f4a1cc 100644 --- a/fuzzers/forkserver/fuzzbench_forkserver/Cargo.toml +++ b/fuzzers/forkserver/fuzzbench_forkserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_forkserver" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/forkserver/fuzzbench_forkserver_cmplog/Cargo.toml b/fuzzers/forkserver/fuzzbench_forkserver_cmplog/Cargo.toml index 3ba60db390..e6d06f337e 100644 --- a/fuzzers/forkserver/fuzzbench_forkserver_cmplog/Cargo.toml +++ b/fuzzers/forkserver/fuzzbench_forkserver_cmplog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_forkserver_cmplog" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/forkserver/libafl-fuzz/Cargo.toml b/fuzzers/forkserver/libafl-fuzz/Cargo.toml index 4213a46d31..894d17d582 100644 --- a/fuzzers/forkserver/libafl-fuzz/Cargo.toml +++ b/fuzzers/forkserver/libafl-fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl-fuzz" -version = "0.15.0" +version = "0.15.1" description = "Reimplementation of afl-fuzz on top of LibAFL" documentation = "https://docs.rs/libafl" authors = ["Aarnav Bos "] diff --git a/fuzzers/full_system/nyx_libxml2_parallel/Cargo.toml b/fuzzers/full_system/nyx_libxml2_parallel/Cargo.toml index 0537d4a32f..f5c1b37252 100644 --- a/fuzzers/full_system/nyx_libxml2_parallel/Cargo.toml +++ b/fuzzers/full_system/nyx_libxml2_parallel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nyx_libxml2_parallel" -version = "0.15.0" +version = "0.15.1" edition = "2021" default-run = "nyx_libxml2_parallel" diff --git a/fuzzers/full_system/nyx_libxml2_standalone/Cargo.toml b/fuzzers/full_system/nyx_libxml2_standalone/Cargo.toml index 64c568ce32..80d319c65a 100644 --- a/fuzzers/full_system/nyx_libxml2_standalone/Cargo.toml +++ b/fuzzers/full_system/nyx_libxml2_standalone/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nyx_libxml2_standalone" -version = "0.15.0" +version = "0.15.1" edition = "2021" default-run = "nyx_libxml2_standalone" diff --git a/fuzzers/full_system/qemu_baremetal/Cargo.toml b/fuzzers/full_system/qemu_baremetal/Cargo.toml index efa03169ab..2476cadf84 100644 --- a/fuzzers/full_system/qemu_baremetal/Cargo.toml +++ b/fuzzers/full_system/qemu_baremetal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_baremetal" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/full_system/qemu_linux_kernel/Cargo.toml b/fuzzers/full_system/qemu_linux_kernel/Cargo.toml index e1a2169e77..303be80661 100644 --- a/fuzzers/full_system/qemu_linux_kernel/Cargo.toml +++ b/fuzzers/full_system/qemu_linux_kernel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_linux_kernel" -version = "0.15.0" +version = "0.15.1" authors = [ "Romain Malmain ", "Dongjia Zhang ", diff --git a/fuzzers/full_system/qemu_linux_process/Cargo.toml b/fuzzers/full_system/qemu_linux_process/Cargo.toml index df5db1bc58..4210e09d27 100644 --- a/fuzzers/full_system/qemu_linux_process/Cargo.toml +++ b/fuzzers/full_system/qemu_linux_process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qemu_linux_process" -version = "0.15.0" +version = "0.15.1" authors = ["Romain Malmain "] edition = "2021" diff --git a/fuzzers/fuzz_anything/baby_fuzzer_wasm/Cargo.toml b/fuzzers/fuzz_anything/baby_fuzzer_wasm/Cargo.toml index ed2f6fcabd..151a5c7e8f 100644 --- a/fuzzers/fuzz_anything/baby_fuzzer_wasm/Cargo.toml +++ b/fuzzers/fuzz_anything/baby_fuzzer_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_wasm" -version = "0.15.0" +version = "0.15.1" authors = ["Addison Crump "] edition = "2018" diff --git a/fuzzers/fuzz_anything/baby_no_std/Cargo.toml b/fuzzers/fuzz_anything/baby_no_std/Cargo.toml index 5f2aa5a5fd..af7589c225 100644 --- a/fuzzers/fuzz_anything/baby_no_std/Cargo.toml +++ b/fuzzers/fuzz_anything/baby_no_std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_no_std" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/fuzz_anything/cargo_fuzz/Cargo.toml b/fuzzers/fuzz_anything/cargo_fuzz/Cargo.toml index 17953b0fa6..c4285f3544 100644 --- a/fuzzers/fuzz_anything/cargo_fuzz/Cargo.toml +++ b/fuzzers/fuzz_anything/cargo_fuzz/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cargo_fuzz_test" edition = "2021" -version = "0.15.0" +version = "0.15.1" description = "test" authors = [ "Andrea Fioraldi ", diff --git a/fuzzers/fuzz_anything/cargo_fuzz/fuzz/Cargo.toml b/fuzzers/fuzz_anything/cargo_fuzz/fuzz/Cargo.toml index 3bb66a5fcf..8e1905940a 100644 --- a/fuzzers/fuzz_anything/cargo_fuzz/fuzz/Cargo.toml +++ b/fuzzers/fuzz_anything/cargo_fuzz/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl-fuzz" -version = "0.15.0" +version = "0.15.1" publish = false edition = "2021" diff --git a/fuzzers/fuzz_anything/libafl_atheris/Cargo.toml b/fuzzers/fuzz_anything/libafl_atheris/Cargo.toml index 28a934f307..2401c7e6a3 100644 --- a/fuzzers/fuzz_anything/libafl_atheris/Cargo.toml +++ b/fuzzers/fuzz_anything/libafl_atheris/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_atheris" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/fuzz_anything/push_harness/Cargo.toml b/fuzzers/fuzz_anything/push_harness/Cargo.toml index fc4ed62c73..381222b56d 100644 --- a/fuzzers/fuzz_anything/push_harness/Cargo.toml +++ b/fuzzers/fuzz_anything/push_harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "push_harness" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/fuzz_anything/push_stage_harness/Cargo.toml b/fuzzers/fuzz_anything/push_stage_harness/Cargo.toml index eb2ae77571..228fc9878c 100644 --- a/fuzzers/fuzz_anything/push_stage_harness/Cargo.toml +++ b/fuzzers/fuzz_anything/push_stage_harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "push_stage_harness" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/dynamic_analysis/Cargo.toml b/fuzzers/inprocess/dynamic_analysis/Cargo.toml index 4e728c638b..1e42c4250d 100644 --- a/fuzzers/inprocess/dynamic_analysis/Cargo.toml +++ b/fuzzers/inprocess/dynamic_analysis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dynamic_analysis" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/fuzzbench/Cargo.toml b/fuzzers/inprocess/fuzzbench/Cargo.toml index 99cdd67180..3b52752b0c 100644 --- a/fuzzers/inprocess/fuzzbench/Cargo.toml +++ b/fuzzers/inprocess/fuzzbench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/fuzzbench_ctx/Cargo.toml b/fuzzers/inprocess/fuzzbench_ctx/Cargo.toml index bc14beb441..5de35e1b60 100644 --- a/fuzzers/inprocess/fuzzbench_ctx/Cargo.toml +++ b/fuzzers/inprocess/fuzzbench_ctx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_ctx" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/fuzzbench_text/Cargo.toml b/fuzzers/inprocess/fuzzbench_text/Cargo.toml index 0f4d077f8e..eb41fe9c42 100644 --- a/fuzzers/inprocess/fuzzbench_text/Cargo.toml +++ b/fuzzers/inprocess/fuzzbench_text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzbench_text" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libmozjpeg/Cargo.toml b/fuzzers/inprocess/libfuzzer_libmozjpeg/Cargo.toml index 5738b179ee..27ba382fb2 100644 --- a/fuzzers/inprocess/libfuzzer_libmozjpeg/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libmozjpeg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libmozjpeg" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng/Cargo.toml index d9c70089a1..f0c0fd6cc3 100644 --- a/fuzzers/inprocess/libfuzzer_libpng/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_accounting/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_accounting/Cargo.toml index 50ad11485c..31aa2d4a54 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_accounting/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_accounting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_accounting" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_centralized/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_centralized/Cargo.toml index 63fd4eabdd..c907766389 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_centralized/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_centralized/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_launcher_centralized" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_cmin/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_cmin/Cargo.toml index ab7bf97d88..c9733c1b31 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_cmin/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_cmin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_cmin" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_launcher/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_launcher/Cargo.toml index 9ca8af6c2d..0a4647889d 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_launcher/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_launcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_launcher" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_norestart/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_norestart/Cargo.toml index df9d0c2a38..db803551f3 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_norestart/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_norestart/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_launcher_norestart" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_libpng_tcp_manager/Cargo.toml b/fuzzers/inprocess/libfuzzer_libpng_tcp_manager/Cargo.toml index e7f6d07925..4c6e1bca95 100644 --- a/fuzzers/inprocess/libfuzzer_libpng_tcp_manager/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_libpng_tcp_manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_tcp_manager" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_stb_image/Cargo.toml b/fuzzers/inprocess/libfuzzer_stb_image/Cargo.toml index 96ce1464e7..adc84711b3 100644 --- a/fuzzers/inprocess/libfuzzer_stb_image/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_stb_image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_stb_image" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_stb_image_sugar/Cargo.toml b/fuzzers/inprocess/libfuzzer_stb_image_sugar/Cargo.toml index be0f112a41..e74ea56c25 100644 --- a/fuzzers/inprocess/libfuzzer_stb_image_sugar/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_stb_image_sugar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_stb_image_sugar" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/inprocess/libfuzzer_windows_asan/Cargo.toml b/fuzzers/inprocess/libfuzzer_windows_asan/Cargo.toml index 445429392a..63ef870ffa 100644 --- a/fuzzers/inprocess/libfuzzer_windows_asan/Cargo.toml +++ b/fuzzers/inprocess/libfuzzer_windows_asan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_windows_asan" -version = "0.15.0" +version = "0.15.1" authors = ["Max Ammann "] edition = "2021" categories = ["development-tools::testing"] diff --git a/fuzzers/inprocess/sqlite_centralized_multi_machine/Cargo.toml b/fuzzers/inprocess/sqlite_centralized_multi_machine/Cargo.toml index 155ad8df74..cd53e49998 100644 --- a/fuzzers/inprocess/sqlite_centralized_multi_machine/Cargo.toml +++ b/fuzzers/inprocess/sqlite_centralized_multi_machine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_libpng_launcher_centralized_multi_machine" -version = "0.15.0" +version = "0.15.1" authors = [ "Romain Malmain ", "Andrea Fioraldi ", diff --git a/fuzzers/structure_aware/baby_fuzzer_gramatron/Cargo.toml b/fuzzers/structure_aware/baby_fuzzer_gramatron/Cargo.toml index 129e12810a..f06eb05fe2 100644 --- a/fuzzers/structure_aware/baby_fuzzer_gramatron/Cargo.toml +++ b/fuzzers/structure_aware/baby_fuzzer_gramatron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_gramatron" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/baby_fuzzer_grimoire/Cargo.toml b/fuzzers/structure_aware/baby_fuzzer_grimoire/Cargo.toml index 7209ccb3ca..740316dced 100644 --- a/fuzzers/structure_aware/baby_fuzzer_grimoire/Cargo.toml +++ b/fuzzers/structure_aware/baby_fuzzer_grimoire/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_grimoire" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/baby_fuzzer_multi/Cargo.toml b/fuzzers/structure_aware/baby_fuzzer_multi/Cargo.toml index d9f1d7920c..c2831be63b 100644 --- a/fuzzers/structure_aware/baby_fuzzer_multi/Cargo.toml +++ b/fuzzers/structure_aware/baby_fuzzer_multi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_multi" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/baby_fuzzer_nautilus/Cargo.toml b/fuzzers/structure_aware/baby_fuzzer_nautilus/Cargo.toml index 2f5ddadffa..a6052b112d 100644 --- a/fuzzers/structure_aware/baby_fuzzer_nautilus/Cargo.toml +++ b/fuzzers/structure_aware/baby_fuzzer_nautilus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_nautilus" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/baby_fuzzer_tokens/Cargo.toml b/fuzzers/structure_aware/baby_fuzzer_tokens/Cargo.toml index 1309b4596b..13deb00c6e 100644 --- a/fuzzers/structure_aware/baby_fuzzer_tokens/Cargo.toml +++ b/fuzzers/structure_aware/baby_fuzzer_tokens/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baby_fuzzer_tokens" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/forkserver_simple_nautilus/Cargo.toml b/fuzzers/structure_aware/forkserver_simple_nautilus/Cargo.toml index c3033b748e..415ab9072e 100644 --- a/fuzzers/structure_aware/forkserver_simple_nautilus/Cargo.toml +++ b/fuzzers/structure_aware/forkserver_simple_nautilus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forkserver_simple" -version = "0.15.0" +version = "0.15.1" authors = ["tokatoka "] edition = "2021" diff --git a/fuzzers/structure_aware/libfuzzer_stb_image_concolic/fuzzer/Cargo.toml b/fuzzers/structure_aware/libfuzzer_stb_image_concolic/fuzzer/Cargo.toml index 0d1eeef332..0728cceb7f 100644 --- a/fuzzers/structure_aware/libfuzzer_stb_image_concolic/fuzzer/Cargo.toml +++ b/fuzzers/structure_aware/libfuzzer_stb_image_concolic/fuzzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzer_stb_image_concolic" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/fuzzers/structure_aware/libfuzzer_stb_image_concolic/runtime/Cargo.toml b/fuzzers/structure_aware/libfuzzer_stb_image_concolic/runtime/Cargo.toml index b75823d974..2665b678b1 100644 --- a/fuzzers/structure_aware/libfuzzer_stb_image_concolic/runtime/Cargo.toml +++ b/fuzzers/structure_aware/libfuzzer_stb_image_concolic/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "example_runtime" -version = "0.15.0" +version = "0.15.1" edition = "2021" authors = ["Julius Hohnerlein "] diff --git a/fuzzers/structure_aware/nautilus_sync/Cargo.toml b/fuzzers/structure_aware/nautilus_sync/Cargo.toml index 9518ec5923..ddf263ebb8 100644 --- a/fuzzers/structure_aware/nautilus_sync/Cargo.toml +++ b/fuzzers/structure_aware/nautilus_sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nautilus_sync" -version = "0.15.0" +version = "0.15.1" authors = [ "Andrea Fioraldi ", "Dominik Maier ", diff --git a/libafl_libfuzzer/runtime/Cargo.toml.template b/libafl_libfuzzer/runtime/Cargo.toml.template index 872fab8a56..585c6f14b7 100644 --- a/libafl_libfuzzer/runtime/Cargo.toml.template +++ b/libafl_libfuzzer/runtime/Cargo.toml.template @@ -1,6 +1,6 @@ [package] name = "libafl_libfuzzer_runtime" -version = "0.15.0" +version = "0.15.1" edition = "2021" publish = false diff --git a/utils/desyscall/Cargo.toml b/utils/desyscall/Cargo.toml index 956386c5ab..0a39ca5284 100644 --- a/utils/desyscall/Cargo.toml +++ b/utils/desyscall/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "desyscall" -version = "0.15.0" +version = "0.15.1" edition = "2021" description = "DeSyscall: Hooks syscalls for reduces overhead during in-process fuzzing" repository = "https://github.com/AFLplusplus/LibAFL/" diff --git a/utils/gdb_qemu/gdb_demo/Cargo.toml b/utils/gdb_qemu/gdb_demo/Cargo.toml index 5581820c1d..d43fed6f8e 100644 --- a/utils/gdb_qemu/gdb_demo/Cargo.toml +++ b/utils/gdb_qemu/gdb_demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gdb_demo" -version = "0.15.0" +version = "0.15.1" edition = "2021" [build-dependencies] diff --git a/utils/gdb_qemu/gdb_qemu/Cargo.toml b/utils/gdb_qemu/gdb_qemu/Cargo.toml index ee642395fc..67dd350c7a 100644 --- a/utils/gdb_qemu/gdb_qemu/Cargo.toml +++ b/utils/gdb_qemu/gdb_qemu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gdb_qemu" -version = "0.15.0" +version = "0.15.1" edition = "2021" [build-dependencies] diff --git a/utils/libafl_fmt/Cargo.toml b/utils/libafl_fmt/Cargo.toml index 9ffcee3d89..10fcbb15d8 100644 --- a/utils/libafl_fmt/Cargo.toml +++ b/utils/libafl_fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_fmt" -version = "0.15.0" +version = "0.15.1" edition = "2021" description = "Format the LibAFL repository" authors = ["Romain Malmain "] diff --git a/utils/multi_machine_generator/Cargo.toml b/utils/multi_machine_generator/Cargo.toml index 18d32e3c41..626fd4c31b 100644 --- a/utils/multi_machine_generator/Cargo.toml +++ b/utils/multi_machine_generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multi_machine_generator" authors = ["Romain Malmain "] -version = "0.15.0" +version = "0.15.1" description = "Generator for multi-machine setup" license = "MIT OR Apache-2.0" keywords = ["fuzzing", "testing", "security"] diff --git a/utils/noaslr/demo/Cargo.toml b/utils/noaslr/demo/Cargo.toml index def9c66312..5285e2a348 100644 --- a/utils/noaslr/demo/Cargo.toml +++ b/utils/noaslr/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noaslr_demo" -version = "0.15.0" +version = "0.15.1" edition = "2021" [build-dependencies] diff --git a/utils/noaslr/libnoaslr/Cargo.toml b/utils/noaslr/libnoaslr/Cargo.toml index 24e9aa2f4c..ed1be271be 100644 --- a/utils/noaslr/libnoaslr/Cargo.toml +++ b/utils/noaslr/libnoaslr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnoaslr" -version = "0.15.0" +version = "0.15.1" edition = "2021" [lib] diff --git a/utils/noaslr/noaslr/Cargo.toml b/utils/noaslr/noaslr/Cargo.toml index 7770783576..ff64b9a3b4 100644 --- a/utils/noaslr/noaslr/Cargo.toml +++ b/utils/noaslr/noaslr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noaslr" -version = "0.15.0" +version = "0.15.1" edition = "2021" [build-dependencies]