Bump to 0.14.0 (#2692)

This commit is contained in:
Andrea Fioraldi 2024-11-13 23:10:35 +01:00 committed by GitHub
parent 8d81e3480e
commit d339a58f7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
93 changed files with 114 additions and 114 deletions

View File

@ -49,7 +49,7 @@ exclude = [
]
[workspace.package]
version = "0.13.2"
version = "0.14.0"
license = "MIT OR Apache-2.0"
[workspace.dependencies]

View File

@ -1,7 +1,7 @@
[package]
name = "pylibafl"
description = "Python bindings for LibAFL"
version = "0.13.2"
version = "0.14.0"
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.22.3", features = ["extension-module"] }
pyo3-log = { version = "0.11.0" }
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.2", features = [
libafl_sugar = { path = "../../libafl_sugar", version = "0.14.0", features = [
"python",
] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", features = [
libafl_bolts = { path = "../../libafl_bolts", version = "0.14.0", features = [
"python",
] }
[target.'cfg(target_os = "linux")'.dependencies]
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.2", features = [
libafl_qemu = { path = "../../libafl_qemu", version = "0.14.0", features = [
"python",
] }

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "PyLibAFL"
version = "0.13.2"
version = "0.14.0"
description = "Advanced Fuzzing Library for Python"
readme = "README.md"
requires-python = ">=3.8"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_01"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_02"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_03"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_04"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_05"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_listing_06"
version = "0.13.2"
version = "0.14.0"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzer_custom_executor"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_minimizing"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_swap_differential"
version = "0.13.2"
version = "0.14.0"
authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2021"
default-run = "fuzzer_sd"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_unicode"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "c_code_with_fork_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "c_code_with_inprocess_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "command_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "forkserver_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "rust_code_with_fork_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "rust_code_with_inprocess_executor"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[features]

View File

@ -1,6 +1,6 @@
[package]
name = "tutorial"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "frida_executable_fuzzer"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[lib]

View File

@ -1,6 +1,6 @@
[package]
name = "frida_fuzzer"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "frida_windows_gdiplus"
version = "0.13.2"
version = "0.14.0"
authors = ["Richard Johnson <richinseattle@gmail.com>"]
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_fork_qemu"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_qemu"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",
@ -29,7 +29,7 @@ libafl_qemu = { path = "../../../libafl_qemu", features = [
"x86_64",
"usermode",
] }
libafl_targets = { path = "../../../libafl_targets", version = "0.13.2" }
libafl_targets = { path = "../../../libafl_targets", version = "0.14.0" }
env_logger = "0.11.5"
log = { version = "0.4.22", features = ["release_max_level_info"] }

View File

@ -1,6 +1,6 @@
[package]
name = "intel_pt_baby_fuzzer"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_cmin"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_coverage"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_launcher"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "tinyinst_simple"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_with_forkexecutor"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "forkserver_libafl_cc"
version = "0.13.2"
version = "0.14.0"
authors = ["ergrelet <ergrelet@users.noreply.github.com>"]
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "forkserver_simple"
version = "0.13.2"
version = "0.14.0"
authors = ["tokatoka <tokazerkje@outlook.com>"]
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_forkserver"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_forkserver_cmplog"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libafl-fuzz"
version = "0.13.2"
version = "0.14.0"
description = "Reimplementation of afl-fuzz on top of LibAFL"
documentation = "https://docs.rs/libafl"
authors = ["Aarnav Bos <aarnavbos@gmail.com>"]

View File

@ -1,6 +1,6 @@
[package]
name = "nyx_libxml2_parallel"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
default-run = "nyx_libxml2_parallel"

View File

@ -1,6 +1,6 @@
[package]
name = "nyx_libxml2_standalone"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
default-run = "nyx_libxml2_standalone"

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_baremetal"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_linux_kernel"
version = "0.13.2"
version = "0.14.0"
authors = [
"Romain Malmain <rmalmain@pm.me>",
"Dongjia Zhang <tokazerkje@outlook.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_linux_process"
version = "0.13.2"
version = "0.14.0"
authors = ["Romain Malmain <rmalmain@pm.me>"]
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_wasm"
version = "0.13.2"
version = "0.14.0"
authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2018"

View File

@ -1,6 +1,6 @@
[package]
name = "baby_no_std"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,7 +1,7 @@
[package]
name = "cargo_fuzz_test"
edition = "2021"
version = "0.13.2"
version = "0.14.0"
description = "test"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libafl-fuzz"
version = "0.13.2"
version = "0.14.0"
publish = false
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_atheris"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "push_harness"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "push_stage_harness"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "dynamic_analysis"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_ctx"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_text"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_accounting"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_launcher_centralized"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_cmin"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_launcher_norestart"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_tcp_manager"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_stb_image"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_stb_image_sugar"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_windows_asan"
version = "0.13.2"
version = "0.14.0"
authors = ["Max Ammann <max@maxammann.org>"]
edition = "2021"
categories = ["development-tools::testing"]

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng_launcher_centralized_multi_machine"
version = "0.13.2"
version = "0.14.0"
authors = [
"Romain Malmain <romain.malmain@pm.me>",
"Andrea Fioraldi <andreafioraldi@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_gramatron"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_grimoire"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_multi"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_nautilus"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_tokens"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "forkserver_simple"
version = "0.13.2"
version = "0.14.0"
authors = ["tokatoka <tokazerkje@outlook.com>"]
edition = "2021"

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_stb_image_concolic"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "example_runtime"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]

View File

@ -1,6 +1,6 @@
[package]
name = "nautilus_sync"
version = "0.13.2"
version = "0.14.0"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -205,10 +205,10 @@ bytecount = "0.6.8"
static_assertions = { workspace = true }
[dependencies]
libafl_bolts = { version = "0.13.2", path = "../libafl_bolts", default-features = false, features = [
libafl_bolts = { version = "0.14.0", path = "../libafl_bolts", default-features = false, features = [
"alloc",
] }
libafl_derive = { version = "0.13.2", path = "../libafl_derive", optional = true }
libafl_derive = { version = "0.14.0", path = "../libafl_derive", optional = true }
libafl_intelpt = { path = "../libafl_intelpt", optional = true }
rustversion = { workspace = true }

View File

@ -119,7 +119,7 @@ llmp_small_maps = ["alloc"]
rustversion = { workspace = true }
[dependencies]
libafl_derive = { version = "0.13.2", optional = true, path = "../libafl_derive" }
libafl_derive = { version = "0.14.0", optional = true, path = "../libafl_derive" }
static_assertions = { workspace = true }
tuple_list = { version = "0.1.3" }

View File

@ -32,11 +32,11 @@ all-features = true
no-cpp-runtime = []
[dependencies]
libafl = { path = "../../libafl", version = "0.13.2", default-features = false, features = [
libafl = { path = "../../libafl", version = "0.14.0", default-features = false, features = [
"std",
"serdeany_autoreg",
] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", default-features = false, features = [
libafl_bolts = { path = "../../libafl_bolts", version = "0.14.0", default-features = false, features = [
"std",
"serdeany_autoreg",
] }
@ -50,7 +50,7 @@ cmake = { workspace = true }
bindgen = { workspace = true }
regex = { workspace = true }
which = { workspace = true }
symcc_libafl = { path = "../symcc_libafl", version = "0.13.2" }
symcc_libafl = { path = "../symcc_libafl", version = "0.14.0" }
[lints]
workspace = true

View File

@ -47,17 +47,17 @@ auto-download = ["frida-gum-sys/auto-download", "frida-gum/auto-download"]
cc = { workspace = true, features = ["parallel"] }
[dependencies]
libafl = { path = "../libafl", default-features = false, version = "0.13.2", features = [
libafl = { path = "../libafl", default-features = false, version = "0.14.0", features = [
"std",
"derive",
"frida_cli",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0", default-features = false, features = [
"std",
"derive",
"frida_cli",
] }
libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = [
libafl_targets = { path = "../libafl_targets", version = "0.14.0", features = [
"std",
"sancov_cmplog",
] }

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_libfuzzer_runtime"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
publish = false

View File

@ -21,17 +21,17 @@ categories = [
[target.'cfg(target_os = "linux")'.dependencies]
libnyx = { git = "https://github.com/nyx-fuzz/libnyx.git", rev = "ea6ceb994ab975b81aea0daaf64b92a3066c1e8d" }
libafl = { path = "../libafl", version = "0.13.2", features = [
libafl = { path = "../libafl", version = "0.14.0", features = [
"std",
"libafl_derive",
"frida_cli",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0", features = [
"std",
"libafl_derive",
"frida_cli",
] }
libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = [
libafl_targets = { path = "../libafl_targets", version = "0.14.0", features = [
"std",
"sancov_cmplog",
] }

View File

@ -88,18 +88,18 @@ shared = ["libafl_qemu_sys/shared"]
clippy = ["libafl_qemu_sys/clippy"]
[dependencies]
libafl = { path = "../libafl", version = "0.13.2", default-features = false, features = [
libafl = { path = "../libafl", version = "0.14.0", default-features = false, features = [
"std",
"derive",
"regex",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0", 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", default-features = false }
libafl_derive = { path = "../libafl_derive", version = "0.13.2" }
libafl_targets = { path = "../libafl_targets", version = "0.14.0" }
libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.14.0", default-features = false }
libafl_derive = { path = "../libafl_derive", version = "0.14.0" }
serde = { workspace = true, default-features = false, features = [
"alloc",
@ -138,7 +138,7 @@ getset = "0.1.3"
document-features = { workspace = true, optional = true }
[build-dependencies]
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.2" }
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.14.0" }
pyo3-build-config = { version = "0.22.3", optional = true }
rustversion = { workspace = true }
bindgen = { workspace = true }

View File

@ -66,7 +66,7 @@ strum_macros = { workspace = true }
pyo3 = { version = "0.22.3", optional = true }
[build-dependencies]
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.2" }
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.14.0" }
pyo3-build-config = { version = "0.22.3", optional = true }
rustversion = { workspace = true }

View File

@ -60,9 +60,9 @@ riscv64 = ["libafl_qemu/riscv64"]
pyo3-build-config = { version = "0.22.3", optional = true }
[dependencies]
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" }
libafl = { path = "../libafl", version = "0.14.0" }
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0" }
libafl_targets = { path = "../libafl_targets", version = "0.14.0" }
# Document all features of this crate (for `cargo doc`)
document-features = { workspace = true, optional = true }
@ -72,7 +72,7 @@ pyo3 = { version = "0.22.3", optional = true }
log = { workspace = true }
[target.'cfg(target_os = "linux")'.dependencies]
libafl_qemu = { path = "../libafl_qemu", version = "0.13.2" }
libafl_qemu = { path = "../libafl_qemu", version = "0.14.0" }
[lib]
name = "libafl_sugar"

View File

@ -70,9 +70,9 @@ cc = { version = "1.1.21", features = ["parallel"] }
rustversion = "1.0.17"
[dependencies]
libafl = { path = "../libafl", version = "0.13.2", default-features = false, features = [
libafl = { path = "../libafl", version = "0.14.0", default-features = false, features = [
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0", default-features = false, features = [
] }
libc = { workspace = true }
hashbrown = { workspace = true, default-features = true }

View File

@ -21,11 +21,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.2", features = [
libafl = { path = "../libafl", version = "0.14.0", features = [
"std",
"libafl_derive",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.14.0", features = [
"std",
"libafl_derive",
] }

View File

@ -1,6 +1,6 @@
[package]
name = "desyscall"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
description = "DeSyscall: Hooks syscalls for reduces overhead during in-process fuzzing"
repository = "https://github.com/AFLplusplus/LibAFL/"

View File

@ -1,6 +1,6 @@
[package]
name = "gdb_demo"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[build-dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "gdb_qemu"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[build-dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "libafl_fmt"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
description = "Format the LibAFL repository"
authors = ["Romain Malmain <romain.malmain@pm.me>"]

View File

@ -1,7 +1,7 @@
[package]
name = "multi_machine_generator"
authors = ["Romain Malmain <romain.malmain@pm.me>"]
version = "0.13.2"
version = "0.14.0"
description = "Generator for multi-machine setup"
license = "MIT OR Apache-2.0"
keywords = ["fuzzing", "testing", "security"]

View File

@ -1,6 +1,6 @@
[package]
name = "noaslr_demo"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[build-dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "libnoaslr"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[lib]

View File

@ -1,6 +1,6 @@
[package]
name = "noaslr"
version = "0.13.2"
version = "0.14.0"
edition = "2021"
[build-dependencies]