-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from teymour-aldridge/new-version
Increase Fuzzcheck version.
- Loading branch information
Showing
4 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cargo-fuzzcheck" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
authors = ["Loïc Lecrenier <[email protected]>"] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fuzzcheck" | ||
version = "0.12.1" | ||
version = "0.13.0" | ||
authors = ["Loïc Lecrenier <[email protected]>"] | ||
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fuzzcheck_common" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
authors = ["Loïc Lecrenier <[email protected]>"] | ||
edition = "2021" | ||
description = "Common components for both cargo-fuzzcheck and fuzzcheck" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fuzzcheck_mutators_derive" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
authors = ["Loïc Lecrenier <[email protected]>"] | ||
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" |