-
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
17 changed files
with
45 additions
and
45 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,13 +1,13 @@ | ||
[package] | ||
name = "cargo-bolero" | ||
version = "0.11.2" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "cargo command for running bolero fuzz tests" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "quickcheck", "property", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "README.md" | ||
rust-version = "1.76.0" | ||
|
||
|
@@ -20,10 +20,10 @@ libfuzzer = [] | |
|
||
[dependencies] | ||
anyhow = "1.0" | ||
bit-set = "0.5" | ||
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" | ||
bit-set = "0.8" | ||
bolero-afl = { version = "0.12", path = "../../lib/bolero-afl", default-features = false, features = ["bin"], optional = true } | ||
bolero-honggfuzz = { version = "0.12", path = "../../lib/bolero-honggfuzz", default-features = false, features = ["bin"], optional = true } | ||
cargo_metadata = "0.19" | ||
humantime = "2" | ||
lazy_static = "1" | ||
rustc_version = "0.4" | ||
|
@@ -34,7 +34,7 @@ tar = "0.4" | |
tempfile = "3" | ||
|
||
[dev-dependencies] | ||
bolero = { version = "0.11", path = "../../lib/bolero" } | ||
bolero = { version = "0.12", path = "../../lib/bolero" } | ||
|
||
[[test]] | ||
name = "fuzz_bytes" | ||
|
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.11.0" | ||
version = "0.12.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.11", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.12", 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
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero-engine" | ||
version = "0.11.2" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "fuzz and property testing framework" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "quickcheck", "property", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../../README.md" | ||
rust-version = "1.66.0" | ||
|
||
|
@@ -18,7 +18,7 @@ rng = ["rand", "rand_xoshiro", "bolero-generator/alloc"] | |
|
||
[dependencies] | ||
anyhow = "1" | ||
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false } | ||
bolero-generator = { version = "0.12", path = "../bolero-generator", default-features = false } | ||
lazy_static = "1" | ||
pretty-hex = { version = "0.4", default-features = false } | ||
rand = { version = "0.8", optional = true } | ||
|
@@ -28,7 +28,7 @@ rand_xoshiro = { version = "0.6", optional = true } | |
backtrace = { version = "0.3", default-features = false, features = ["std"] } | ||
|
||
[dev-dependencies] | ||
bolero-generator = { version = "0.11", path = "../bolero-generator", features = ["std"] } | ||
bolero-generator = { version = "0.12", path = "../bolero-generator", features = ["std"] } | ||
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
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
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
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero-generator-derive" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "value generator for testing and fuzzing" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "quickcheck", "property", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../bolero-generator/README.md" | ||
|
||
[lib] | ||
|
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.11.1" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "value generator for testing and fuzzing" | ||
homepage = "https://github.com/camshaft/bolero" | ||
|
@@ -19,7 +19,7 @@ alloc = ["rand_core/alloc"] | |
|
||
[dependencies] | ||
arbitrary = { version = "1.0", optional = true } | ||
bolero-generator-derive = { version = "0.11", path = "../bolero-generator-derive" } | ||
bolero-generator-derive = { version = "0.12", path = "../bolero-generator-derive" } | ||
either = { version = "1.5", default-features = false, optional = true } | ||
getrandom = { version = "0.2", optional = true } | ||
rand_core = { version = "0.6", default-features = false } | ||
|
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero-honggfuzz" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "honggfuzz plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../../README.md" | ||
|
||
[features] | ||
|
@@ -16,7 +16,7 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.12", path = "../bolero-engine", optional = true } | ||
|
||
[lints.rust.unexpected_cfgs] | ||
level = "warn" | ||
|
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
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero-kani" | ||
version = "0.11.2" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "kani plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "model", "proof"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../../README.md" | ||
|
||
[features] | ||
|
@@ -16,7 +16,7 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", optional = true } | ||
bolero-engine = { version = "0.12", path = "../bolero-engine", optional = true } | ||
|
||
[lints.rust.unexpected_cfgs] | ||
level = "warn" | ||
|
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero-libfuzzer" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "libfuzzer plugin for bolero" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../../README.md" | ||
|
||
[features] | ||
|
@@ -16,7 +16,7 @@ bin = [] | |
lib = ["bolero-engine"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache"], optional = true } | ||
bolero-engine = { version = "0.12", 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
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,13 +1,13 @@ | ||
[package] | ||
name = "bolero" | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
authors = ["Cameron Bytheway <[email protected]>"] | ||
description = "fuzz and property testing front-end" | ||
homepage = "https://github.com/camshaft/bolero" | ||
repository = "https://github.com/camshaft/bolero" | ||
keywords = ["testing", "quickcheck", "property", "fuzz", "fuzzing"] | ||
license = "MIT" | ||
edition = "2018" | ||
edition = "2021" | ||
readme = "../../README.md" | ||
rust-version = "1.66.0" | ||
|
||
|
@@ -18,28 +18,28 @@ alloc = ["bolero-generator/alloc"] | |
arbitrary = ["bolero-generator/arbitrary"] | ||
|
||
[dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine" } | ||
bolero-generator = { version = "0.11", path = "../bolero-generator", default-features = false } | ||
bolero-engine = { version = "0.12", path = "../bolero-engine" } | ||
bolero-generator = { version = "0.12", path = "../bolero-generator", default-features = false } | ||
cfg-if = "1" | ||
|
||
[target.'cfg(fuzzing_afl)'.dependencies] | ||
bolero-afl = { version = "0.11", path = "../bolero-afl" } | ||
bolero-afl = { version = "0.12", path = "../bolero-afl" } | ||
|
||
[target.'cfg(fuzzing_libfuzzer)'.dependencies] | ||
bolero-libfuzzer = { version = "0.11", path = "../bolero-libfuzzer" } | ||
bolero-libfuzzer = { version = "0.12", path = "../bolero-libfuzzer" } | ||
|
||
[target.'cfg(fuzzing_honggfuzz)'.dependencies] | ||
bolero-honggfuzz = { version = "0.11", path = "../bolero-honggfuzz" } | ||
bolero-honggfuzz = { version = "0.12", path = "../bolero-honggfuzz" } | ||
|
||
[target.'cfg(fuzzing_random)'.dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] } | ||
bolero-engine = { version = "0.12", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "0.8" } | ||
|
||
[target.'cfg(kani)'.dependencies] | ||
bolero-kani = { version = "0.11", path = "../bolero-kani" } | ||
bolero-kani = { version = "0.12", path = "../bolero-kani" } | ||
|
||
[target.'cfg(not(any(fuzzing, kani)))'.dependencies] | ||
bolero-engine = { version = "0.11", path = "../bolero-engine", features = ["cache", "rng"] } | ||
bolero-engine = { version = "0.12", path = "../bolero-engine", features = ["cache", "rng"] } | ||
rand = { version = "0.8" } | ||
|
||
[dev-dependencies] | ||
|
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
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