Skip to content

Commit f6151f4

Browse files
authored
* 0132 * fix
1 parent 82f11c2 commit f6151f4

30 files changed

Lines changed: 62 additions & 60 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ members = [
1313
"utils/deexit",
1414
"utils/libafl_benches",
1515
"utils/gramatron/construct_automata",
16-
"utils/desyscall",
17-
"utils/multi_machine_generator",
1816
]
1917
default-members = [
2018
"libafl",
@@ -48,7 +46,7 @@ exclude = [
4846
]
4947

5048
[workspace.package]
51-
version = "0.13.1"
49+
version = "0.13.2"
5250

5351
[profile.release]
5452
lto = true

bindings/pylibafl/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "pylibafl"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55

66
[dependencies]
77
pyo3 = { version = "0.18.3", features = ["extension-module"] }
88
pyo3-log = "0.8.1"
9-
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.1", features = ["python"] }
10-
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", features = ["python"] }
9+
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.2", features = ["python"] }
10+
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", features = ["python"] }
1111

1212
[target.'cfg(target_os = "linux")'.dependencies]
13-
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.1", features = ["python"] }
13+
libafl_qemu = { path = "../../libafl_qemu", version = "0.13.2", features = ["python"] }
1414

1515
[build-dependencies]
1616
pyo3-build-config = { version = "0.17" }

libafl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
55
description = "Slot your own fuzzers together and extend their features using Rust"
66
documentation = "https://docs.rs/libafl"
@@ -142,8 +142,8 @@ serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
142142
bytecount = "0.6.3"
143143

144144
[dependencies]
145-
libafl_bolts = { version = "0.13.1", path = "../libafl_bolts", default-features = false, features = ["alloc"] }
146-
libafl_derive = { version = "0.13.1", path = "../libafl_derive", optional = true }
145+
libafl_bolts = { version = "0.13.2", path = "../libafl_bolts", default-features = false, features = ["alloc"] }
146+
libafl_derive = { version = "0.13.2", path = "../libafl_derive", optional = true }
147147

148148
rustversion = "1.0"
149149
tuple_list = { version = "0.1.3" }

libafl_bolts/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl_bolts"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
55
description = "Low-level bolts to create fuzzers and so much more"
66
documentation = "https://docs.rs/libafl"
@@ -92,7 +92,7 @@ llmp_small_maps = ["alloc"]
9292
rustversion = "1.0"
9393

9494
[dependencies]
95-
libafl_derive = { version = "0.13.1", optional = true, path = "../libafl_derive" }
95+
libafl_derive = { version = "0.13.2", optional = true, path = "../libafl_derive" }
9696
static_assertions = "1.1.0"
9797

9898
tuple_list = { version = "0.1.3" }

libafl_cc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl_cc"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
55
description = "Commodity library to wrap compilers and link LibAFL"
66
documentation = "https://docs.rs/libafl_cc"

libafl_concolic/symcc_libafl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symcc_libafl"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
66
description = "Meta package for symcc_runtime"

libafl_concolic/symcc_runtime/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symcc_runtime"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
authors = ["Julius Hohnerlein <julihoh@users.noreply.github.com>", "Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
66
description = "Build Concolic Tracing tools based on SymCC in Rust"
@@ -25,12 +25,12 @@ no-cpp-runtime = []
2525
unchecked_unwrap = "4"
2626
ctor = "0.2"
2727
libc = "0.2"
28-
libafl = { path = "../../libafl", version = "0.13.1", default-features=false, features=["std", "serdeany_autoreg"] }
29-
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", default-features=false, features=["std", "serdeany_autoreg"] }
28+
libafl = { path = "../../libafl", version = "0.13.2", default-features=false, features=["std", "serdeany_autoreg"] }
29+
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.2", default-features=false, features=["std", "serdeany_autoreg"] }
3030

3131
[build-dependencies]
3232
cmake = "0.1"
3333
bindgen = "0.69.4"
3434
regex = "1"
3535
which = "6.0"
36-
symcc_libafl = { path = "../symcc_libafl", version = "0.13.1" }
36+
symcc_libafl = { path = "../symcc_libafl", version = "0.13.2" }

libafl_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl_derive"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>"]
55
description = "Derive proc-macro crate for LibAFL"
66
documentation = "https://docs.rs/libafl_derive"

libafl_frida/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl_frida"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["s1341 <github@shmarya.net>"]
55
description = "Frida backend library for LibAFL"
66
documentation = "https://docs.rs/libafl_frida"
@@ -49,17 +49,17 @@ yaxpeax-x86 = "1.2.2"
4949
iced-x86 = { version = "1.20.0", features = ["code_asm"], optional = true }
5050

5151
[dependencies]
52-
libafl = { path = "../libafl", default-features = false, version = "0.13.1", features = [
52+
libafl = { path = "../libafl", default-features = false, version = "0.13.2", features = [
5353
"std",
5454
"derive",
5555
"frida_cli",
5656
] }
57-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [
57+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.2", default-features = false, features = [
5858
"std",
5959
"derive",
6060
"frida_cli"
6161
] }
62-
libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = [
62+
libafl_targets = { path = "../libafl_targets", version = "0.13.2", features = [
6363
"std",
6464
"sancov_cmplog",
6565
] }

libafl_libfuzzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libafl_libfuzzer"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
description = "libFuzzer shim which uses LibAFL with common defaults"
55
repository = "https://github.com/AFLplusplus/LibAFL/"
66
readme = "../README.md"

0 commit comments

Comments
 (0)