Skip to content

Commit bb579e6

Browse files
authored
0.13.1 (#2343)
1 parent 234ea04 commit bb579e6

File tree

14 files changed

+34
-34
lines changed

14 files changed

+34
-34
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ exclude = [
4444
]
4545

4646
[workspace.package]
47-
version = "0.13.0"
47+
version = "0.13.1"
4848

4949
[profile.release]
5050
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.0"
3+
version = "0.13.1"
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.0", features = ["python"] }
10-
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.0", features = ["python"] }
9+
libafl_sugar = { path = "../../libafl_sugar", version = "0.13.1", features = ["python"] }
10+
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.1", features = ["python"] }
1111

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

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

libafl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0", path = "../libafl_bolts", default-features = false, features = ["alloc"] }
146-
libafl_derive = { version = "0.13.0", path = "../libafl_derive", optional = true }
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 }
147147

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

libafl_bolts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ llmp_small_maps = ["alloc"]
9292
rustversion = "1.0"
9393

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

9898
tuple_list = { version = "0.1.3" }

libafl_concolic/symcc_runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0", default-features=false, features=["std", "serdeany_autoreg"] }
29-
libafl_bolts = { path = "../../libafl_bolts", version = "0.13.0", default-features=false, features=["std", "serdeany_autoreg"] }
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"] }
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.0" }
36+
symcc_libafl = { path = "../symcc_libafl", version = "0.13.1" }

libafl_frida/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0", features = [
52+
libafl = { path = "../libafl", default-features = false, version = "0.13.1", features = [
5353
"std",
5454
"derive",
5555
"frida_cli",
5656
] }
57-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = [
57+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [
5858
"std",
5959
"derive",
6060
"frida_cli"
6161
] }
62-
libafl_targets = { path = "../libafl_targets", version = "0.13.0", features = [
62+
libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = [
6363
"std",
6464
"sancov_cmplog",
6565
] }

libafl_libfuzzer/libafl_libfuzzer_runtime/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_runtime"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
edition = "2021"
55
publish = false
66

libafl_nyx/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ categories = ["development-tools::testing", "emulators", "embedded", "os", "no-s
1515

1616
[target.'cfg(target_os = "linux")'.dependencies]
1717
libnyx = { git = "https://github.com/nyx-fuzz/libnyx.git", rev = "6833d236dfe785a8a23d8c8d79e74c99fa635004" }
18-
libafl = { path = "../libafl", version = "0.13.0", features = ["std", "libafl_derive", "frida_cli" ]}
19-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", features = ["std", "libafl_derive", "frida_cli" ]}
20-
libafl_targets = { path = "../libafl_targets", version = "0.13.0", features = ["std", "sancov_cmplog"] }
18+
libafl = { path = "../libafl", version = "0.13.1", features = ["std", "libafl_derive", "frida_cli" ]}
19+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", features = ["std", "libafl_derive", "frida_cli" ]}
20+
libafl_targets = { path = "../libafl_targets", version = "0.13.1", features = ["std", "sancov_cmplog"] }
2121

2222
nix = { version = "0.29", features = ["fs"] }
2323
typed-builder = "0.18"

libafl_qemu/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ slirp = [ "systemmode", "libafl_qemu_sys/slirp" ] # build qemu with host libslir
6363
shared = [ "libafl_qemu_sys/shared" ]
6464

6565
[dependencies]
66-
libafl = { path = "../libafl", version = "0.13.0", default-features = false, features = ["std", "derive", "regex"] }
67-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = ["std", "derive"] }
68-
libafl_targets = { path = "../libafl_targets", version = "0.13.0" }
69-
libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.13.0" }
66+
libafl = { path = "../libafl", version = "0.13.1", default-features = false, features = ["std", "derive", "regex"] }
67+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = ["std", "derive"] }
68+
libafl_targets = { path = "../libafl_targets", version = "0.13.1" }
69+
libafl_qemu_sys = { path = "./libafl_qemu_sys", version = "0.13.1" }
7070

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

100100
[build-dependencies]
101-
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.0" }
101+
libafl_qemu_build = { path = "./libafl_qemu_build", version = "0.13.1" }
102102
pyo3-build-config = { version = "0.21", optional = true }
103103
rustversion = "1.0"
104104
bindgen = "0.69"

libafl_qemu/libafl_qemu_build/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_qemu_build"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Andrea Fioraldi <[email protected]>"]
55
description = "Builder for LibAFL QEMU"
66
documentation = "https://docs.rs/libafl_qemu_build"

libafl_qemu/libafl_qemu_sys/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_qemu_sys"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Andrea Fioraldi <[email protected]>"]
55
description = "C to Rust bindings for the LibAFL QEMU bridge"
66
documentation = "https://docs.rs/libafl_qemu_sys"
@@ -49,6 +49,6 @@ strum_macros = "0.26"
4949
pyo3 = { version = "0.18", optional = true }
5050

5151
[build-dependencies]
52-
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.0" }
52+
libafl_qemu_build = { path = "../libafl_qemu_build", version = "0.13.1" }
5353
pyo3-build-config = { version = "0.21", optional = true }
5454
rustversion = "1.0"

libafl_sugar/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ hexagon = ["libafl_qemu/hexagon"]
4848
pyo3-build-config = { version = "0.21", optional = true }
4949

5050
[dependencies]
51-
libafl = { path = "../libafl", version = "0.13.0" }
52-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0" }
53-
libafl_targets = { path = "../libafl_targets", version = "0.13.0" }
51+
libafl = { path = "../libafl", version = "0.13.1" }
52+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1" }
53+
libafl_targets = { path = "../libafl_targets", version = "0.13.1" }
5454

5555
# Document all features of this crate (for `cargo doc`)
5656
document-features = { version = "0.2", optional = true }
@@ -60,7 +60,7 @@ pyo3 = { version = "0.18", optional = true }
6060
log = "0.4.20"
6161

6262
[target.'cfg(target_os = "linux")'.dependencies]
63-
libafl_qemu = { path = "../libafl_qemu", version = "0.13.0" }
63+
libafl_qemu = { path = "../libafl_qemu", version = "0.13.1" }
6464

6565
[lib]
6666
name = "libafl_sugar"

libafl_targets/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ cc = { version = "1.0", features = ["parallel"] }
6666
rustversion = "1.0"
6767

6868
[dependencies]
69-
libafl = { path = "../libafl", version = "0.13.0", default-features = false, features = [] }
70-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", default-features = false, features = [] }
69+
libafl = { path = "../libafl", version = "0.13.1", default-features = false, features = [] }
70+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", default-features = false, features = [] }
7171
libc = "0.2"
7272
hashbrown = "0.14"
7373
once_cell = "1.19"

libafl_tinyinst/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ description = "TinyInst backend for libafl"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
libafl = { path = "../libafl", version = "0.13.0", features = [
15+
libafl = { path = "../libafl", version = "0.13.1", features = [
1616
"std",
1717
"libafl_derive",
1818
] }
19-
libafl_bolts = { path = "../libafl_bolts", version = "0.13.0", features = [
19+
libafl_bolts = { path = "../libafl_bolts", version = "0.13.1", features = [
2020
"std",
2121
"libafl_derive",
2222
] }

0 commit comments

Comments
 (0)