-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
36 additions
and
36 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-bolero" | ||
version = "0.10.1" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "cargo command for running bolero fuzz tests" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -21,8 +21,8 @@ libfuzzer = [] | |
[dependencies] | ||
anyhow = "1.0" | ||
bit-set = "0.5" | ||
bolero-afl = { version = "0.10", path = "../../lib/bolero-afl", default-features = false, features = ["bin"], optional = true } | ||
bolero-honggfuzz = { version = "0.10", path = "../../lib/bolero-honggfuzz", default-features = false, features = ["bin"], optional = true } | ||
bolero-afl = { version = "0.11", path = "../../lib/bolero-afl", default-features = false, features = ["bin"], optional = true } | ||
bolero-honggfuzz = { version = "0.11", path = "../../lib/bolero-honggfuzz", default-features = false, features = ["bin"], optional = true } | ||
cargo_metadata = "0.18" | ||
humantime = "2" | ||
lazy_static = "1" | ||
|
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 = "bolero-afl" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "afl plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -16,7 +16,7 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true } | ||
|
||
[build-dependencies] | ||
cc = "1.0" |
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 = "bolero-engine" | ||
version = "0.10.2" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "fuzz and property testing framework" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -17,9 +17,9 @@ rng = ["rand", "rand_xoshiro", "bolero-generator/alloc"] | |
|
||
[dependencies] | ||
anyhow = "1" | ||
bolero-generator = { version = "0.10", path = "../bolero-generator", default-features = false } | ||
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false } | ||
lazy_static = "1" | ||
pretty-hex = "0.3" | ||
pretty-hex = { version = "0.4", default-features = false } | ||
rand = { version = "0.8", optional = true } | ||
rand_xoshiro = { version = "0.6", optional = true } | ||
|
||
|
@@ -28,5 +28,5 @@ backtrace = { version = "0.3", default-features = false, features = ["std"] } | |
|
||
[dev-dependencies] | ||
bolero-generator = { path = "../bolero-generator", features = ["std"] } | ||
rand = "^0.8" | ||
rand = "0.8" | ||
rand_xoshiro = "0.6" |
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 = "bolero-generator-derive" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "value generator for testing and fuzzing" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -14,9 +14,9 @@ readme = "../bolero-generator/README.md" | |
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro-crate = "1.2" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
proc-macro-crate = "2" | ||
proc-macro2 = "1" | ||
quote = "1" | ||
# The `full` feature is required to correctly parse attributes | ||
# TODO investigate if this can be reduced in scope | ||
syn = { version = "1.0", features = ["full"] } | ||
syn = { version = "1", features = ["full"] } |
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 = "bolero-generator" | ||
version = "0.10.2" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "value generator for testing and fuzzing" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -18,9 +18,9 @@ alloc = ["rand_core/alloc"] | |
|
||
[dependencies] | ||
arbitrary = { version = "1.0", optional = true } | ||
bolero-generator-derive = { version = "0.10.0", path = "../bolero-generator-derive" } | ||
bolero-generator-derive = { version = "0.11", path = "../bolero-generator-derive" } | ||
either = { version = "1.5", default-features = false, optional = true } | ||
rand_core = { version = "^0.6", default-features = false } | ||
rand_core = { version = "0.6", default-features = false } | ||
|
||
[dev-dependencies] | ||
rand = "^0.8" | ||
rand = "0.8" |
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 = "bolero-honggfuzz" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "honggfuzz plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -16,4 +16,4 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true } |
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 = "bolero-kani" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "kani plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -16,4 +16,4 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true } |
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 = "bolero-libfuzzer" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "libfuzzer plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -16,7 +16,7 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache"], optional = true } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache"], optional = true } | ||
|
||
[build-dependencies] | ||
cc = "1.0" |
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 = "bolero" | ||
version = "0.10.1" | ||
version = "0.11.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "fuzz and property testing front-end" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -18,29 +18,29 @@ alloc = ["bolero-generator/alloc"] | |
arbitrary = ["bolero-generator/arbitrary"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine" } | ||
bolero-generator = { version = "0.10", path = "../bolero-generator", default-features = false } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine" } | ||
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false } | ||
cfg-if = "1" | ||
|
||
[target.'cfg(fuzzing_afl)'.dependencies] | ||
bolero-afl = { version = "0.10", path = "../bolero-afl" } | ||
bolero-afl = { version = "0.11", path = "../bolero-afl" } | ||
|
||
[target.'cfg(fuzzing_libfuzzer)'.dependencies] | ||
bolero-libfuzzer = { version = "0.10", path = "../bolero-libfuzzer" } | ||
bolero-libfuzzer = { version = "0.11", path = "../bolero-libfuzzer" } | ||
|
||
[target.'cfg(fuzzing_honggfuzz)'.dependencies] | ||
bolero-honggfuzz = { version = "0.10", path = "../bolero-honggfuzz" } | ||
bolero-honggfuzz = { version = "0.11", path = "../bolero-honggfuzz" } | ||
|
||
[target.'cfg(fuzzing_random)'.dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "^0.8" } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "0.8" } | ||
|
||
[target.'cfg(kani)'.dependencies] | ||
bolero-kani = { version = "0.10", path = "../bolero-kani" } | ||
bolero-kani = { version = "0.11", path = "../bolero-kani" } | ||
|
||
[target.'cfg(not(any(fuzzing, kani)))'.dependencies] | ||
bolero-engine = { version = "0.10", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "^0.8" } | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "0.8" } | ||
|
||
[dev-dependencies] | ||
rand = "^0.8" | ||
rand = "0.8" |