Skip to content
Merged

0.13.1 #2343

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ exclude = [
]

[workspace.package]
version = "0.13.0"
version = "0.13.1"

[profile.release]
lto = true
Expand Down
8 changes: 4 additions & 4 deletions bindings/pylibafl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "pylibafl"
version = "0.13.0"
version = "0.13.1"
edition = "2021"

[dependencies]
pyo3 = { version = "0.18.3", features = ["extension-module"] }
pyo3-log = "0.8.1"
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.0", features = ["python"] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.0", features = ["python"] }
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.1", features = ["python"] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", features = ["python"] }

[target.'cfg(target_os = "linux")'.dependencies]
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.0", features = ["python"] }
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.1", features = ["python"] }

[build-dependencies]
pyo3-build-config = { version = "0.17" }
Expand Down
4 changes: 2 additions & 2 deletions libafl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
bytecount = "0.6.3"

[dependencies]
libafl_bolts = { version = "0.13.0", path = "../libafl_bolts", default-features = false, features = ["alloc"] }
libafl_derive = { version = "0.13.0", path = "../libafl_derive", optional = true }
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 }

rustversion = "1.0"
tuple_list = { version = "0.1.3" }
Expand Down
2 changes: 1 addition & 1 deletion libafl_bolts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ llmp_small_maps = ["alloc"]
rustversion = "1.0"

[dependencies]
libafl_derive = { version = "0.13.0", optional = true, path = "../libafl_derive" }
libafl_derive = { version = "0.13.1", optional = true, path = "../libafl_derive" }
static_assertions = "1.1.0"

tuple_list = { version = "0.1.3" }
Expand Down
6 changes: 3 additions & 3 deletions libafl_concolic/symcc_runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ no-cpp-runtime = []
unchecked_unwrap = "4"
ctor = "0.2"
libc = "0.2"
libafl = { path = "../../libafl", version = "0.13.0", default-features=false, features=["std", "serdeany_autoreg"] }
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.0", default-features=false, features=["std", "serdeany_autoreg"] }
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"] }

[build-dependencies]
cmake = "0.1"
bindgen = "0.69.4"
regex = "1"
which = "6.0"
symcc_libafl = { path = "../symcc_libafl", version = "0.13.0" }
symcc_libafl = { path = "../symcc_libafl", version = "0.13.1" }
6 changes: 3 additions & 3 deletions libafl_frida/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = [
libafl = { path = "../libafl", default-features = false, version = "0.13.1", features = [
"std",
"derive",
"frida_cli",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [
"std",
"derive",
"frida_cli"
] }
libafl_targets = { path = "../libafl_targets", version = "0.13.0", features = [
libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = [
"std",
"sancov_cmplog",
] }
Expand Down
2 changes: 1 addition & 1 deletion libafl_libfuzzer/libafl_libfuzzer_runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libafl_libfuzzer_runtime"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
publish = false

Expand Down
6 changes: 3 additions & 3 deletions libafl_nyx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["std", "libafl_derive", "frida_cli" ]}
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", features = ["std", "libafl_derive", "frida_cli" ]}
libafl_targets = { path = "../libafl_targets", version = "0.13.0", features = ["std", "sancov_cmplog"] }
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"] }

nix = { version = "0.29", features = ["fs"] }
typed-builder = "0.18"
10 changes: 5 additions & 5 deletions libafl_qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ slirp = [ "systemmode", "libafl_qemu_sys/slirp" ] # build qemu with host libslir
shared = [ "libafl_qemu_sys/shared" ]

[dependencies]
libafl = { path = "../libafl", version = "0.13.0", default-features = false, features = ["std", "derive", "regex"] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = ["std", "derive"] }
libafl_targets = { path = "../libafl_targets", version = "0.13.0" }
libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.13.0" }
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" }

serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
hashbrown = { version = "0.14", features = ["serde"] } # A faster hashmap, nostd compatible
Expand Down Expand Up @@ -98,7 +98,7 @@ memmap2 = "0.9"
document-features = { version = "0.2", optional = true }

[build-dependencies]
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.0" }
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.1" }
pyo3-build-config = { version = "0.21", optional = true }
rustversion = "1.0"
bindgen = "0.69"
Expand Down
2 changes: 1 addition & 1 deletion libafl_qemu/libafl_qemu_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libafl_qemu_build"
version = "0.13.0"
version = "0.13.1"
authors = ["Andrea Fioraldi <[email protected]>"]
description = "Builder for LibAFL QEMU"
documentation = "https://docs.rs/libafl_qemu_build"
Expand Down
4 changes: 2 additions & 2 deletions libafl_qemu/libafl_qemu_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libafl_qemu_sys"
version = "0.13.0"
version = "0.13.1"
authors = ["Andrea Fioraldi <[email protected]>"]
description = "C to Rust bindings for the LibAFL QEMU bridge"
documentation = "https://docs.rs/libafl_qemu_sys"
Expand Down Expand Up @@ -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.0" }
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.1" }
pyo3-build-config = { version = "0.21", optional = true }
rustversion = "1.0"
8 changes: 4 additions & 4 deletions libafl_sugar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ hexagon = ["libafl_qemu/hexagon"]
pyo3-build-config = { version = "0.21", optional = true }

[dependencies]
libafl = { path = "../libafl", version = "0.13.0" }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0" }
libafl_targets = { path = "../libafl_targets", version = "0.13.0" }
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" }

# Document all features of this crate (for `cargo doc`)
document-features = { version = "0.2", optional = true }
Expand All @@ -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.0" }
libafl_qemu = { path = "../libafl_qemu", version = "0.13.1" }

[lib]
name = "libafl_sugar"
Expand Down
4 changes: 2 additions & 2 deletions libafl_targets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ cc = { version = "1.0", features = ["parallel"] }
rustversion = "1.0"

[dependencies]
libafl = { path = "../libafl", version = "0.13.0", default-features = false, features = [] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = [] }
libafl = { path = "../libafl", version = "0.13.1", default-features = false, features = [] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [] }
libc = "0.2"
hashbrown = "0.14"
once_cell = "1.19"
Expand Down
4 changes: 2 additions & 2 deletions libafl_tinyinst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = [
libafl = { path = "../libafl", version = "0.13.1", features = [
"std",
"libafl_derive",
] }
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", features = [
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", features = [
"std",
"libafl_derive",
] }
Expand Down