Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase Fuzzcheck version. #46

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cargo-fuzzcheck/Cargo.toml
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"
Expand All @@ -16,7 +16,7 @@ version = "0.2"

[dependencies.fuzzcheck_common]
path = "../fuzzcheck_common"
version = "0.12"
version = "0.13"

[[bin]]
name = "cargo-fuzzcheck"
Expand Down
26 changes: 13 additions & 13 deletions fuzzcheck/Cargo.toml
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"
Expand All @@ -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 = []
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion fuzzcheck_common/Cargo.toml
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"
Expand Down
8 changes: 4 additions & 4 deletions fuzzcheck_mutators_derive/Cargo.toml
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"
Expand All @@ -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"
Loading