Skip to content

Commit 15415d2

Browse files
Merge pull request #46 from teymour-aldridge/new-version
Increase Fuzzcheck version.
2 parents 2acc737 + 3164fad commit 15415d2

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

cargo-fuzzcheck/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-fuzzcheck"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Loïc Lecrenier <loic.lecrenier@me.com>"]
55
edition = "2021"
66
description = "Command line tool to use fuzzcheck-rs"
@@ -16,7 +16,7 @@ version = "0.2"
1616

1717
[dependencies.fuzzcheck_common]
1818
path = "../fuzzcheck_common"
19-
version = "0.12"
19+
version = "0.13"
2020

2121
[[bin]]
2222
name = "cargo-fuzzcheck"

fuzzcheck/Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzcheck"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Loïc Lecrenier <loic.lecrenier@me.com>"]
55
edition = "2021"
66
description = "A modular, structure-aware, and feedback-driven fuzzing engine for Rust functions"
@@ -12,7 +12,7 @@ keywords = ["property", "fuzzer", "fuzzing", "test", "testing"]
1212
categories = ["development-tools::testing"]
1313

1414
[build-dependencies]
15-
cc = "1.0.73"
15+
cc = "1.1.28"
1616

1717
[features]
1818
grammar_mutator = []
@@ -24,29 +24,29 @@ default = ["grammar_mutator", "regex_grammar", "serde_json_serializer"]
2424

2525
[dependencies]
2626
getopts = "0.2.21"
27-
fastrand = "1.7.0"
27+
fastrand = "1.9.0"
2828
cfg-if = "1.0.0"
29-
libc = { version = "0.2.126", default_features = false }
29+
libc = { version = "0.2.126", default-features = false }
3030

3131
md5 = "0.7.0"
32-
object = { version = "0.29.0", default_features = false, features = ["read"] }
33-
flate2 = { version = "1.0.24", default_features = false, features = ["zlib"] }
32+
object = { version = "0.29.0", default-features = false, features = ["read"] }
33+
flate2 = { version = "1.0.24", default-features = false, features = ["zlib"] }
3434

35-
fuzzcheck_common = { path = "../fuzzcheck_common", version = "0.12.0" }
35+
fuzzcheck_common = { path = "../fuzzcheck_common", version = "0.13.0" }
3636

37-
serde = { version = "1.0.139", features = ["derive"], optional = true }
38-
serde_json = { version = "1.0.82", optional = true }
37+
serde = { version = "1.0.210", features = ["derive"], optional = true }
38+
serde_json = { version = "1.0.128", optional = true }
3939
ron = { version = "0.7.1", optional = true }
4040

41-
fuzzcheck_mutators_derive = { path = "../fuzzcheck_mutators_derive", version = "0.12.0" }
41+
fuzzcheck_mutators_derive = { path = "../fuzzcheck_mutators_derive", version = "0.13.0" }
4242

43-
ahash = "0.7.6"
43+
ahash = "0.7.8"
4444

45-
regex-syntax = { version = "0.6.27", optional = true }
45+
regex-syntax = { version = "0.6.29", optional = true }
4646
nu-ansi-term = "0.46.0"
4747

4848
bit-vec = "0.6.3"
49-
rustc-demangle = "0.1.21"
49+
rustc-demangle = "0.1.24"
5050

5151
[lib]
5252
name = "fuzzcheck"

fuzzcheck_common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzcheck_common"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Loïc Lecrenier <loic.lecrenier@me.com>"]
55
edition = "2021"
66
description = "Common components for both cargo-fuzzcheck and fuzzcheck"

fuzzcheck_mutators_derive/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzzcheck_mutators_derive"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Loïc Lecrenier <loic.lecrenier@me.com>"]
55
edition = "2021"
66
description = "Procedural macros to generate fuzzcheck mutators"
@@ -14,6 +14,6 @@ categories = ["development-tools::testing"]
1414
proc-macro = true
1515

1616
[dependencies]
17-
proc-macro2 = "1.0.37"
18-
quote = "1.0.18"
19-
syn = "1.0.91"
17+
proc-macro2 = "1.0.87"
18+
quote = "1.0.37"
19+
syn = "1.0.109"

0 commit comments

Comments
 (0)