Skip to content

Commit

Permalink
add versions to dev-dependencies (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft authored Jun 11, 2024
1 parent ab92799 commit b2f578f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/cargo-bolero/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-bolero"
version = "0.11.1"
version = "0.11.2"
authors = ["Cameron Bytheway <[email protected]>"]
description = "cargo command for running bolero fuzz tests"
homepage = "https://github.com/camshaft/bolero"
Expand Down Expand Up @@ -34,7 +34,7 @@ tar = "0.4"
tempfile = "3"

[dev-dependencies]
bolero = { path = "../../lib/bolero" }
bolero = { version = "0.11", path = "../../lib/bolero" }

[[test]]
name = "fuzz_bytes"
Expand Down
4 changes: 2 additions & 2 deletions lib/bolero-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bolero-engine"
version = "0.11.0"
version = "0.11.2"
authors = ["Cameron Bytheway <[email protected]>"]
description = "fuzz and property testing framework"
homepage = "https://github.com/camshaft/bolero"
Expand All @@ -27,7 +27,7 @@ rand_xoshiro = { version = "0.6", optional = true }
backtrace = { version = "0.3", default-features = false, features = ["std"] }

[dev-dependencies]
bolero-generator = { path = "../bolero-generator", features = ["std"] }
bolero-generator = { version = "0.11", path = "../bolero-generator", features = ["std"] }
rand = "0.8"
rand_xoshiro = "0.6"

Expand Down

0 comments on commit b2f578f

Please sign in to comment.