0.13.2 (for real this time) (#2448)

* 0.13.2 (for real this time)

* More 0.13.2

* Make sure this never bites us

* Update ahash
This commit is contained in:
Dominik Maier 2024-07-26 13:41:05 +02:00 committed by GitHub
parent afbdc02c54
commit e83dc792da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
73 changed files with 79 additions and 76 deletions

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "PyLibAFL"
version = "0.10.1"
version = "0.13.2"
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.1.0"
version = "0.13.2"
authors = ["Your Name <you@example.com>"]
edition = "2018"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_gramatron"
version = "0.13.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.0"
version = "0.13.2"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_multi"
version = "0.10.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.0"
version = "0.13.2"
authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2021"
default-run = "fuzzer_sd"

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "baby_fuzzer_wasm"
version = "0.1.0"
version = "0.13.2"
authors = ["Addison Crump <research@addisoncrump.info>"]
edition = "2018"
@ -23,9 +23,12 @@ libafl_bolts = { path = "../../../libafl_bolts", default-features = false }
# code size when deploying.
console_error_panic_hook = { version = "0.1.6", optional = true }
[dependencies.web-sys]
version = "0.3"
features = ['console', 'Window', 'Performance', 'PerformanceTiming']
web-sys = { version = "0.3", features = [
'console',
'Window',
'Performance',
'PerformanceTiming',
] }
[dev-dependencies]
wasm-bindgen-test = "0.3.13"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "baby_no_std"
version = "0.13.0"
version = "0.13.2"
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.0.1"
version = "0.13.2"
edition = "2021"
[features]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "fuzzbench_forkserver"
version = "0.13.0"
version = "0.13.2"
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.0"
version = "0.13.2"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "libfuzzer_libpng"
version = "0.13.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.0"
version = "0.13.2"
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.9.0"
version = "0.13.2"
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.0"
version = "0.13.2"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "libafl-fuzz"
version = "0.0.1"
version = "0.13.2"
edition = "2021"
[dependencies]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "qemu_systemmode"
version = "0.13.0"
version = "0.13.2"
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.0"
version = "0.13.2"
authors = [
"Andrea Fioraldi <andreafioraldi@gmail.com>",
"Dominik Maier <domenukk@gmail.com>",

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "dump_constraints"
version = "0.1.0"
version = "0.13.2"
edition = "2021"
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]
description = "Dump Constraints, a lib to see the constraints oof a run"

View File

@ -1,6 +1,6 @@
[package]
name = "runtime_test"
version = "0.1.0"
version = "0.13.2"
edition = "2021"
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>"]
description = "Runtime test of LibAFL fuzzing with symbolicc execution"

View File

@ -92,7 +92,7 @@ backtrace = { version = "0.3", default-features = false, features = [
"serde",
] }
num-traits = "0.2"
ahash = "^0.8" # fetch the latest
ahash = "0.8"
paste = "1.0"
log = "0.4.20"
mmap-rs = "0.6.0"

View File

@ -65,7 +65,7 @@ libafl_targets = { path = "../libafl_targets", features = [
"sanitizer_interfaces",
] }
ahash = { version = "0.8.3", default-features = false }
ahash = { version = "0.8", default-features = false }
libc = "0.2.1"
log = "0.4.20"
mimalloc = { version = "0.1.34", default-features = false }

View File

@ -85,5 +85,5 @@ serde = { version = "1.0", default-features = false, features = [
"alloc",
] } # serialization lib
meminterval = { version = "0.4", features = ["serde"], optional = true }
ahash = { version = "0.8.3", default-features = false, optional = true }
ahash = { version = "0.8", default-features = false, optional = true }
# serde-big-array = "0.3.2"

View File

@ -30,7 +30,7 @@ for subdir, dirs, files in os.walk(os.getcwd()):
continue
for file in files:
if file != "Cargo.toml":
if file not in ["Cargo.toml", "pyproject.toml"]:
continue
fname = os.path.join(subdir, file)
print(fname)