diff --git a/cargo-fuzzcheck/Cargo.toml b/cargo-fuzzcheck/Cargo.toml index b25e293..2a1e2f6 100644 --- a/cargo-fuzzcheck/Cargo.toml +++ b/cargo-fuzzcheck/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-fuzzcheck" -version = "0.12.0" +version = "0.13.0" authors = ["Loïc Lecrenier "] edition = "2021" description = "Command line tool to use fuzzcheck-rs" @@ -16,7 +16,7 @@ version = "0.2" [dependencies.fuzzcheck_common] path = "../fuzzcheck_common" -version = "0.12" +version = "0.13" [[bin]] name = "cargo-fuzzcheck" diff --git a/fuzzcheck/Cargo.toml b/fuzzcheck/Cargo.toml index c99e5d2..3c020da 100644 --- a/fuzzcheck/Cargo.toml +++ b/fuzzcheck/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzcheck" -version = "0.12.1" +version = "0.13.0" authors = ["Loïc Lecrenier "] edition = "2021" description = "A modular, structure-aware, and feedback-driven fuzzing engine for Rust functions" @@ -12,7 +12,7 @@ keywords = ["property", "fuzzer", "fuzzing", "test", "testing"] categories = ["development-tools::testing"] [build-dependencies] -cc = "1.0.73" +cc = "1.1.28" [features] grammar_mutator = [] @@ -24,29 +24,29 @@ default = ["grammar_mutator", "regex_grammar", "serde_json_serializer"] [dependencies] getopts = "0.2.21" -fastrand = "1.7.0" +fastrand = "1.9.0" cfg-if = "1.0.0" -libc = { version = "0.2.126", default_features = false } +libc = { version = "0.2.126", default-features = false } md5 = "0.7.0" -object = { version = "0.29.0", default_features = false, features = ["read"] } -flate2 = { version = "1.0.24", default_features = false, features = ["zlib"] } +object = { version = "0.29.0", default-features = false, features = ["read"] } +flate2 = { version = "1.0.24", default-features = false, features = ["zlib"] } -fuzzcheck_common = { path = "../fuzzcheck_common", version = "0.12.0" } +fuzzcheck_common = { path = "../fuzzcheck_common", version = "0.13.0" } -serde = { version = "1.0.139", features = ["derive"], optional = true } -serde_json = { version = "1.0.82", optional = true } +serde = { version = "1.0.210", features = ["derive"], optional = true } +serde_json = { version = "1.0.128", optional = true } ron = { version = "0.7.1", optional = true } -fuzzcheck_mutators_derive = { path = "../fuzzcheck_mutators_derive", version = "0.12.0" } +fuzzcheck_mutators_derive = { path = "../fuzzcheck_mutators_derive", version = "0.13.0" } -ahash = "0.7.6" +ahash = "0.7.8" -regex-syntax = { version = "0.6.27", optional = true } +regex-syntax = { version = "0.6.29", optional = true } nu-ansi-term = "0.46.0" bit-vec = "0.6.3" -rustc-demangle = "0.1.21" +rustc-demangle = "0.1.24" [lib] name = "fuzzcheck" diff --git a/fuzzcheck_common/Cargo.toml b/fuzzcheck_common/Cargo.toml index 4b32dff..a730c8d 100644 --- a/fuzzcheck_common/Cargo.toml +++ b/fuzzcheck_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzcheck_common" -version = "0.12.0" +version = "0.13.0" authors = ["Loïc Lecrenier "] edition = "2021" description = "Common components for both cargo-fuzzcheck and fuzzcheck" diff --git a/fuzzcheck_mutators_derive/Cargo.toml b/fuzzcheck_mutators_derive/Cargo.toml index feefbcb..db33add 100644 --- a/fuzzcheck_mutators_derive/Cargo.toml +++ b/fuzzcheck_mutators_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzzcheck_mutators_derive" -version = "0.12.0" +version = "0.13.0" authors = ["Loïc Lecrenier "] edition = "2021" description = "Procedural macros to generate fuzzcheck mutators" @@ -14,6 +14,6 @@ categories = ["development-tools::testing"] proc-macro = true [dependencies] -proc-macro2 = "1.0.37" -quote = "1.0.18" -syn = "1.0.91" +proc-macro2 = "1.0.87" +quote = "1.0.37" +syn = "1.0.109"