Skip to content

Commit 1e61748

Browse files
bump 0.2.1
1 parent f56f340 commit 1e61748

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

libafl/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"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Andrea Fioraldi <[email protected]>", "Dominik Maier <[email protected]>"]
55
description = "Slot your own fuzzers together and extend their features using Rust"
66
documentation = "https://docs.rs/libafl"
@@ -61,7 +61,7 @@ erased-serde = "0.3.12"
6161
postcard = { version = "0.5.1", features = ["alloc"] } # no_std compatible serde serialization fromat
6262
static_assertions = "1.1.0"
6363
ctor = "0.1.20"
64-
libafl_derive = { version = "0.1.0", optional = true, path = "../libafl_derive" }
64+
libafl_derive = { optional = true, path = "../libafl_derive", version = "0.2.1" }
6565
serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] } # an easy way to debug print SerdeAnyMap
6666
compression = { version = "0.1.5" }
6767
num_enum = "0.5.1"

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.1.0"
3+
version = "0.2.1"
44
authors = ["Andrea Fioraldi <[email protected]>"]
55
description = "Commodity library to wrap compilers and link LibAFL"
66
documentation = "https://docs.rs/libafl_cc"

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.1.0"
3+
version = "0.2.1"
44
authors = ["Andrea Fioraldi <[email protected]>"]
55
description = "Derive proc-macro crate for LibAFL"
66
documentation = "https://docs.rs/libafl_derive"

libafl_frida/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_frida"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["s1341 <[email protected]>"]
55
description = "Frida backend library for LibAFL"
66
documentation = "https://docs.rs/libafl_frida"
@@ -14,8 +14,8 @@ edition = "2018"
1414
cc = { version = "1.0", features = ["parallel"] }
1515

1616
[dependencies]
17-
libafl = { path = "../libafl", version = "0.2.0", features = ["std", "libafl_derive"] }
18-
libafl_targets = { path = "../libafl_targets", version = "0.1.0" }
17+
libafl = { path = "../libafl", version = "0.2.1", features = ["std", "libafl_derive"] }
18+
libafl_targets = { path = "../libafl_targets", version = "0.2.1" }
1919
nix = "0.20.0"
2020
libc = "0.2.92"
2121
hashbrown = "0.11"

libafl_targets/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_targets"
3-
version = "0.1.0"
3+
version = "0.2.1"
44
authors = ["Andrea Fioraldi <[email protected]>"]
55
description = "Common code for target instrumentation that can be used combined with LibAFL"
66
documentation = "https://docs.rs/libafl_targets"

0 commit comments

Comments
 (0)