From f6151f450707be7a29d8ce95807c59be71b93c84 Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Fri, 19 Jul 2024 23:00:37 +0200 Subject: [PATCH] 0.13.2 (#2423) * 0132 * fix --- Cargo.toml | 4 +--- bindings/pylibafl/Cargo.toml | 8 ++++---- libafl/Cargo.toml | 6 +++--- libafl_bolts/Cargo.toml | 4 ++-- libafl_cc/Cargo.toml | 2 +- libafl_concolic/symcc_libafl/Cargo.toml | 2 +- libafl_concolic/symcc_runtime/Cargo.toml | 8 ++++---- libafl_derive/Cargo.toml | 2 +- libafl_frida/Cargo.toml | 8 ++++---- libafl_libfuzzer/Cargo.toml | 2 +- libafl_libfuzzer/runtime/Cargo.toml.template | 2 +- libafl_nyx/Cargo.toml | 8 ++++---- libafl_qemu/Cargo.toml | 12 ++++++------ libafl_qemu/libafl_qemu_build/Cargo.toml | 2 +- libafl_qemu/libafl_qemu_sys/Cargo.toml | 4 ++-- libafl_sugar/Cargo.toml | 10 +++++----- libafl_targets/Cargo.toml | 6 +++--- libafl_tinyinst/Cargo.toml | 6 +++--- utils/build_and_test_fuzzers/Cargo.toml | 2 +- utils/deexit/Cargo.toml | 2 +- utils/desyscall/Cargo.toml | 2 +- utils/gdb_qemu/demo/Cargo.toml | 2 +- utils/gdb_qemu/gdb_qemu/Cargo.toml | 2 +- utils/gramatron/construct_automata/Cargo.toml | 2 +- utils/libafl_benches/Cargo.toml | 2 +- utils/libafl_fmt/Cargo.toml | 2 +- utils/multi_machine_generator/Cargo.toml | 4 ++++ utils/noaslr/demo/Cargo.toml | 2 +- utils/noaslr/libnoaslr/Cargo.toml | 2 +- utils/noaslr/noaslr/Cargo.toml | 2 +- 30 files changed, 62 insertions(+), 60 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a5e8c97c65..1b70fee66c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,6 @@ members = [ "utils/deexit", "utils/libafl_benches", "utils/gramatron/construct_automata", - "utils/desyscall", - "utils/multi_machine_generator", ] default-members = [ "libafl", @@ -48,7 +46,7 @@ exclude = [ ] [workspace.package] -version = "0.13.1" +version = "0.13.2" [profile.release] lto = true diff --git a/bindings/pylibafl/Cargo.toml b/bindings/pylibafl/Cargo.toml index 6cddfb2c59..d80aedcdf5 100644 --- a/bindings/pylibafl/Cargo.toml +++ b/bindings/pylibafl/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "pylibafl" -version = "0.13.1" +version = "0.13.2" edition = "2021" [dependencies] pyo3 = { version = "0.18.3", features = ["extension-module"] } pyo3-log = "0.8.1" -libafl_sugar = { path = "../../libafl_sugar", version = "0.13.1", features = ["python"] } -libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", features = ["python"] } +libafl_sugar = { path = "../../libafl_sugar", version = "0.13.2", features = ["python"] } +libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", features = ["python"] } [target.'cfg(target_os = "linux")'.dependencies] -libafl_qemu = { path = "../../libafl_qemu", version = "0.13.1", features = ["python"] } +libafl_qemu = { path = "../../libafl_qemu", version = "0.13.2", features = ["python"] } [build-dependencies] pyo3-build-config = { version = "0.17" } diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index b5f4477d08..d31d6c264c 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi ", "Dominik Maier "] description = "Slot your own fuzzers together and extend their features using Rust" documentation = "https://docs.rs/libafl" @@ -142,8 +142,8 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"] } bytecount = "0.6.3" [dependencies] -libafl_bolts = { version = "0.13.1", path = "../libafl_bolts", default-features = false, features = ["alloc"] } -libafl_derive = { version = "0.13.1", path = "../libafl_derive", optional = true } +libafl_bolts = { version = "0.13.2", path = "../libafl_bolts", default-features = false, features = ["alloc"] } +libafl_derive = { version = "0.13.2", path = "../libafl_derive", optional = true } rustversion = "1.0" tuple_list = { version = "0.1.3" } diff --git a/libafl_bolts/Cargo.toml b/libafl_bolts/Cargo.toml index 8532dfb6dd..3579455fbf 100644 --- a/libafl_bolts/Cargo.toml +++ b/libafl_bolts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_bolts" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi ", "Dominik Maier "] description = "Low-level bolts to create fuzzers and so much more" documentation = "https://docs.rs/libafl" @@ -92,7 +92,7 @@ llmp_small_maps = ["alloc"] rustversion = "1.0" [dependencies] -libafl_derive = { version = "0.13.1", optional = true, path = "../libafl_derive" } +libafl_derive = { version = "0.13.2", optional = true, path = "../libafl_derive" } static_assertions = "1.1.0" tuple_list = { version = "0.1.3" } diff --git a/libafl_cc/Cargo.toml b/libafl_cc/Cargo.toml index 4830d8fddb..49e05b8013 100644 --- a/libafl_cc/Cargo.toml +++ b/libafl_cc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_cc" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "Commodity library to wrap compilers and link LibAFL" documentation = "https://docs.rs/libafl_cc" diff --git a/libafl_concolic/symcc_libafl/Cargo.toml b/libafl_concolic/symcc_libafl/Cargo.toml index 72ab461d6a..438f61ab38 100644 --- a/libafl_concolic/symcc_libafl/Cargo.toml +++ b/libafl_concolic/symcc_libafl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "symcc_libafl" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = ["Julius Hohnerlein ", "Andrea Fioraldi ", "Dominik Maier "] description = "Meta package for symcc_runtime" diff --git a/libafl_concolic/symcc_runtime/Cargo.toml b/libafl_concolic/symcc_runtime/Cargo.toml index 1847d5bbac..e7f746ffe3 100644 --- a/libafl_concolic/symcc_runtime/Cargo.toml +++ b/libafl_concolic/symcc_runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "symcc_runtime" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = ["Julius Hohnerlein ", "Andrea Fioraldi ", "Dominik Maier "] description = "Build Concolic Tracing tools based on SymCC in Rust" @@ -25,12 +25,12 @@ no-cpp-runtime = [] unchecked_unwrap = "4" ctor = "0.2" libc = "0.2" -libafl = { path = "../../libafl", version = "0.13.1", default-features=false, features=["std", "serdeany_autoreg"] } -libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", default-features=false, features=["std", "serdeany_autoreg"] } +libafl = { path = "../../libafl", version = "0.13.2", default-features=false, features=["std", "serdeany_autoreg"] } +libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", default-features=false, features=["std", "serdeany_autoreg"] } [build-dependencies] cmake = "0.1" bindgen = "0.69.4" regex = "1" which = "6.0" -symcc_libafl = { path = "../symcc_libafl", version = "0.13.1" } +symcc_libafl = { path = "../symcc_libafl", version = "0.13.2" } diff --git a/libafl_derive/Cargo.toml b/libafl_derive/Cargo.toml index e3bf529f06..b6be7464b2 100644 --- a/libafl_derive/Cargo.toml +++ b/libafl_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_derive" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "Derive proc-macro crate for LibAFL" documentation = "https://docs.rs/libafl_derive" diff --git a/libafl_frida/Cargo.toml b/libafl_frida/Cargo.toml index 310dae3262..9505522e38 100644 --- a/libafl_frida/Cargo.toml +++ b/libafl_frida/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_frida" -version = "0.13.1" +version = "0.13.2" authors = ["s1341 "] description = "Frida backend library for LibAFL" documentation = "https://docs.rs/libafl_frida" @@ -49,17 +49,17 @@ yaxpeax-x86 = "1.2.2" iced-x86 = { version = "1.20.0", features = ["code_asm"], optional = true } [dependencies] -libafl = { path = "../libafl", default-features = false, version = "0.13.1", features = [ +libafl = { path = "../libafl", default-features = false, version = "0.13.2", features = [ "std", "derive", "frida_cli", ] } -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [ +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [ "std", "derive", "frida_cli" ] } -libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = [ +libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = [ "std", "sancov_cmplog", ] } diff --git a/libafl_libfuzzer/Cargo.toml b/libafl_libfuzzer/Cargo.toml index c1aaf21f24..07f69ad5a7 100644 --- a/libafl_libfuzzer/Cargo.toml +++ b/libafl_libfuzzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_libfuzzer" -version = "0.13.1" +version = "0.13.2" description = "libFuzzer shim which uses LibAFL with common defaults" repository = "https://github.com/AFLplusplus/LibAFL/" readme = "../README.md" diff --git a/libafl_libfuzzer/runtime/Cargo.toml.template b/libafl_libfuzzer/runtime/Cargo.toml.template index e1cb7ffead..5332a4432b 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.13.1" +version = "0.13.2" edition = "2021" publish = false diff --git a/libafl_nyx/Cargo.toml b/libafl_nyx/Cargo.toml index d508f6ec12..7182b53b1e 100644 --- a/libafl_nyx/Cargo.toml +++ b/libafl_nyx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_nyx" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = ["syheliel "] description = "libafl using nyx, only avaliable on linux" @@ -15,9 +15,9 @@ categories = ["development-tools::testing", "emulators", "embedded", "os", "no-s [target.'cfg(target_os = "linux")'.dependencies] libnyx = { git = "https://github.com/nyx-fuzz/libnyx.git", rev = "6833d236dfe785a8a23d8c8d79e74c99fa635004" } -libafl = { path = "../libafl", version = "0.13.1", features = ["std", "libafl_derive", "frida_cli" ]} -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", features = ["std", "libafl_derive", "frida_cli" ]} -libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = ["std", "sancov_cmplog"] } +libafl = { path = "../libafl", version = "0.13.2", features = ["std", "libafl_derive", "frida_cli" ]} +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", features = ["std", "libafl_derive", "frida_cli" ]} +libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = ["std", "sancov_cmplog"] } nix = { version = "0.29", features = ["fs"] } typed-builder = "0.18" diff --git a/libafl_qemu/Cargo.toml b/libafl_qemu/Cargo.toml index a67ca30111..4e37972450 100644 --- a/libafl_qemu/Cargo.toml +++ b/libafl_qemu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_qemu" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "QEMU user backend library for LibAFL" documentation = "https://docs.rs/libafl_qemu" @@ -66,10 +66,10 @@ shared = [ "libafl_qemu_sys/shared" ] clippy = ["libafl_qemu_sys/clippy"] [dependencies] -libafl = { path = "../libafl", version = "0.13.1", default-features = false, features = ["std", "derive", "regex"] } -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = ["std", "derive"] } -libafl_targets = { path = "../libafl_targets", version = "0.13.1" } -libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.13.1" } +libafl = { path = "../libafl", version = "0.13.2", default-features = false, features = ["std", "derive", "regex"] } +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = ["std", "derive"] } +libafl_targets = { path = "../libafl_targets", version = "0.13.2" } +libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.13.2" } serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib hashbrown = { version = "0.14", features = ["serde"] } # A faster hashmap, nostd compatible @@ -101,7 +101,7 @@ memmap2 = "0.9" document-features = { version = "0.2", optional = true } [build-dependencies] -libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.1" } +libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.2" } pyo3-build-config = { version = "0.21", optional = true } rustversion = "1.0" bindgen = "0.69" diff --git a/libafl_qemu/libafl_qemu_build/Cargo.toml b/libafl_qemu/libafl_qemu_build/Cargo.toml index a8947bb2e5..915919e610 100644 --- a/libafl_qemu/libafl_qemu_build/Cargo.toml +++ b/libafl_qemu/libafl_qemu_build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_qemu_build" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "Builder for LibAFL QEMU" documentation = "https://docs.rs/libafl_qemu_build" diff --git a/libafl_qemu/libafl_qemu_sys/Cargo.toml b/libafl_qemu/libafl_qemu_sys/Cargo.toml index 9f0b171a26..27e0a718d2 100644 --- a/libafl_qemu/libafl_qemu_sys/Cargo.toml +++ b/libafl_qemu/libafl_qemu_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_qemu_sys" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "C to Rust bindings for the LibAFL QEMU bridge" documentation = "https://docs.rs/libafl_qemu_sys" @@ -49,6 +49,6 @@ strum_macros = "0.26" pyo3 = { version = "0.18", optional = true } [build-dependencies] -libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.1" } +libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.2" } pyo3-build-config = { version = "0.21", optional = true } rustversion = "1.0" diff --git a/libafl_sugar/Cargo.toml b/libafl_sugar/Cargo.toml index f399fe743d..60817cae5e 100644 --- a/libafl_sugar/Cargo.toml +++ b/libafl_sugar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_sugar" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "Sugar builders to create common fuzzers with LibAFL" documentation = "https://docs.rs/libafl_sugar" @@ -48,9 +48,9 @@ hexagon = ["libafl_qemu/hexagon"] pyo3-build-config = { version = "0.21", optional = true } [dependencies] -libafl = { path = "../libafl", version = "0.13.1" } -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1" } -libafl_targets = { path = "../libafl_targets", version = "0.13.1" } +libafl = { path = "../libafl", version = "0.13.2" } +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2" } +libafl_targets = { path = "../libafl_targets", version = "0.13.2" } # Document all features of this crate (for `cargo doc`) document-features = { version = "0.2", optional = true } @@ -60,7 +60,7 @@ pyo3 = { version = "0.18", optional = true } log = "0.4.20" [target.'cfg(target_os = "linux")'.dependencies] -libafl_qemu = { path = "../libafl_qemu", version = "0.13.1" } +libafl_qemu = { path = "../libafl_qemu", version = "0.13.2" } [lib] name = "libafl_sugar" diff --git a/libafl_targets/Cargo.toml b/libafl_targets/Cargo.toml index f69072d6cc..ab79a8b52d 100644 --- a/libafl_targets/Cargo.toml +++ b/libafl_targets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_targets" -version = "0.13.1" +version = "0.13.2" authors = ["Andrea Fioraldi "] description = "Common code for target instrumentation that can be used combined with LibAFL" documentation = "https://docs.rs/libafl_targets" @@ -66,8 +66,8 @@ cc = { version = "1.0", features = ["parallel"] } rustversion = "1.0" [dependencies] -libafl = { path = "../libafl", version = "0.13.1", default-features = false, features = [] } -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [] } +libafl = { path = "../libafl", version = "0.13.2", default-features = false, features = [] } +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [] } libc = "0.2" hashbrown = "0.14" once_cell = "1.19" diff --git a/libafl_tinyinst/Cargo.toml b/libafl_tinyinst/Cargo.toml index 5c8dad2100..a0fec3033b 100644 --- a/libafl_tinyinst/Cargo.toml +++ b/libafl_tinyinst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_tinyinst" -version = "0.13.1" +version = "0.13.2" edition = "2021" authors = ["elbiazo ", "Dongjia Zhang "] repository = "https://github.com/AFLplusplus/LibAFL/" @@ -12,11 +12,11 @@ description = "TinyInst backend for libafl" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libafl = { path = "../libafl", version = "0.13.1", features = [ +libafl = { path = "../libafl", version = "0.13.2", features = [ "std", "libafl_derive", ] } -libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", features = [ +libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", features = [ "std", "libafl_derive", ] } diff --git a/utils/build_and_test_fuzzers/Cargo.toml b/utils/build_and_test_fuzzers/Cargo.toml index 38cf334956..9256762aa9 100644 --- a/utils/build_and_test_fuzzers/Cargo.toml +++ b/utils/build_and_test_fuzzers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "build_and_test_fuzzers" -version = "0.1.0" +version = "0.13.2" edition = "2021" description = "Get diffing fuzzers from the last commit" repository = "https://github.com/AFLplusplus/LibAFL/" diff --git a/utils/deexit/Cargo.toml b/utils/deexit/Cargo.toml index d763cbf5a0..28ca95cc13 100644 --- a/utils/deexit/Cargo.toml +++ b/utils/deexit/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Andrea Fioraldi ", "Dominik Maier "] name = "deexit" -version = "0.1.0" +version = "0.13.2" edition = "2021" description = "DeExit: Replace exits with aborts to catch them during in-process fuzzing" documentation = "https://docs.rs/libafl" diff --git a/utils/desyscall/Cargo.toml b/utils/desyscall/Cargo.toml index 9428f055b2..63bf66b8fe 100644 --- a/utils/desyscall/Cargo.toml +++ b/utils/desyscall/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "desyscall" -version = "0.1.0" +version = "0.13.2" 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/demo/Cargo.toml b/utils/gdb_qemu/demo/Cargo.toml index 3f1d0e2600..92288c530a 100644 --- a/utils/gdb_qemu/demo/Cargo.toml +++ b/utils/gdb_qemu/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gdb_demo" -version = "0.1.0" +version = "0.13.2" edition = "2021" [build-dependencies] diff --git a/utils/gdb_qemu/gdb_qemu/Cargo.toml b/utils/gdb_qemu/gdb_qemu/Cargo.toml index 8a3d9c09ad..6fa89cbfbe 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.1.0" +version = "0.13.2" edition = "2021" [build-dependencies] diff --git a/utils/gramatron/construct_automata/Cargo.toml b/utils/gramatron/construct_automata/Cargo.toml index 958b38fb03..cd9818fee2 100644 --- a/utils/gramatron/construct_automata/Cargo.toml +++ b/utils/gramatron/construct_automata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "construct_automata" -version = "0.1.0" +version = "0.13.2" edition = "2021" authors = ["Andrea Fioraldi ", "Dominik Maier "] description = "LibAFL Gramatron Gramar Construction" diff --git a/utils/libafl_benches/Cargo.toml b/utils/libafl_benches/Cargo.toml index f153c0ad04..77c6dfb595 100644 --- a/utils/libafl_benches/Cargo.toml +++ b/utils/libafl_benches/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Andrea Fioraldi ", "Dominik Maier "] name = "libafl_benches" -version = "0.13.1" +version = "0.13.2" edition = "2021" description = "LibAFL Benchmarks" documentation = "https://docs.rs/libafl" diff --git a/utils/libafl_fmt/Cargo.toml b/utils/libafl_fmt/Cargo.toml index 7f1b1e8d67..63c2de7d49 100644 --- a/utils/libafl_fmt/Cargo.toml +++ b/utils/libafl_fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libafl_fmt" -version = "0.1.0" +version = "0.13.2" 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 8ee1eaaca6..4f74b845a1 100644 --- a/utils/multi_machine_generator/Cargo.toml +++ b/utils/multi_machine_generator/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "multi_machine_generator" authors = ["Romain Malmain "] +version = "0.13.2" +description = "Generator for multi-machine setup" +license = "MIT OR Apache-2.0" +keywords = ["fuzzing", "testing", "security"] edition = "2021" [dependencies] diff --git a/utils/noaslr/demo/Cargo.toml b/utils/noaslr/demo/Cargo.toml index d603fab37e..53e616afb2 100644 --- a/utils/noaslr/demo/Cargo.toml +++ b/utils/noaslr/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noaslr_demo" -version = "0.1.0" +version = "0.13.2" edition = "2021" [build-dependencies] diff --git a/utils/noaslr/libnoaslr/Cargo.toml b/utils/noaslr/libnoaslr/Cargo.toml index ad8c15058d..31012c96c4 100644 --- a/utils/noaslr/libnoaslr/Cargo.toml +++ b/utils/noaslr/libnoaslr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnoaslr" -version = "0.1.0" +version = "0.13.2" edition = "2021" [lib] diff --git a/utils/noaslr/noaslr/Cargo.toml b/utils/noaslr/noaslr/Cargo.toml index e168f62d77..6373d58e41 100644 --- a/utils/noaslr/noaslr/Cargo.toml +++ b/utils/noaslr/noaslr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noaslr" -version = "0.1.0" +version = "0.13.2" edition = "2021" [build-dependencies]