Skip to content

Commit

Permalink
Update Rust crate proptest to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nextest-bot committed Jan 4, 2025
1 parent fe3e11b commit 3255fd5
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 30 deletions.
27 changes: 6 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion guppy-cmdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ publish = false
clap = { version = "3.2.25", features = ["derive"] }
color-eyre = { version = "0.6.3", default-features = false }
guppy = { path = "../guppy" }
proptest = { version = "1.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
guppy-workspace-hack.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion guppy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ itertools = "0.13.0"
once_cell = "1.20.2"
pathdiff = { version = "0.2.3", features = ["camino"] }
petgraph = { version = "0.6.5", default-features = false }
proptest = { version = "1.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }
rayon = { version = "1.10.0", optional = true }
semver = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion internal-tools/benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false # this is a private crate

[dependencies]
guppy = { path = "../../guppy", features = ["proptest1"] }
proptest = "1.5.0"
proptest = "1.6.0"
proptest-ext = { path = "../proptest-ext" }
guppy-workspace-hack.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion internal-tools/cargo-compare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ guppy-cmdlib = { path = "../../guppy-cmdlib", features = ["proptest1"] }
tempfile = "3.10.1"
once_cell = "1.20.2"
pathdiff = "0.2.3"
proptest = "1.5.0"
proptest = "1.6.0"
2 changes: 1 addition & 1 deletion internal-tools/fixture-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ guppy-cmdlib = { path = "../../guppy-cmdlib", features = ["proptest1"] }
fixtures = { path = "../../fixtures" }
hakari = { path = "../../tools/hakari", features = ["cli-support", "proptest1"] }
once_cell = "1.20.2"
proptest = "1.5.0"
proptest = "1.6.0"
proptest-ext = { path = "../proptest-ext" }
structopt = "0.3.26"
guppy-workspace-hack.workspace = true
2 changes: 1 addition & 1 deletion internal-tools/proptest-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false # this is a private crate
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
proptest = "1.5.0"
proptest = "1.6.0"
twox-hash = { version = "1.6.3", default-features = false }
guppy-workspace-hack.workspace = true
2 changes: 1 addition & 1 deletion target-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ maintenance = { status = "actively-developed" }

[dependencies]
cfg-expr = { workspace = true, features = ["targets"] }
proptest = { version = "1.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
serde = { version = "1.0.216", optional = true, features = ["derive"] }
serde_json = { version = "1.0.134", optional = true }
target-lexicon = { version = "0.12.16", features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ indenter = "0.3.3"
itertools = "0.13.0"
owo-colors = { version = "3.5.0", optional = true }
pathdiff = { version = "0.2.3", features = ["camino"] }
proptest = { version = "1.5.0", optional = true }
proptest = { version = "1.6.0", optional = true }
proptest-derive = { version = "0.5.1", optional = true }
rayon = "1.10.0"
serde = { version = "1.0.216", features = ["derive"], optional = true }
Expand Down
4 changes: 3 additions & 1 deletion workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ edition = "2021"
[dependencies]
aho-corasick = { version = "1.1.2" }
backtrace = { version = "0.3.69", features = ["gimli-symbolize"] }
bit-set = { version = "0.8.0" }
bit-vec = { version = "0.8.0" }
camino = { version = "1.1.9", default-features = false, features = ["serde1"] }
clap = { version = "4.5.22", features = ["derive"] }
clap_builder = { version = "4.5.22", default-features = false, features = ["color", "help", "std", "suggestions", "usage"] }
Expand All @@ -27,7 +29,7 @@ include_dir = { version = "0.7.4", features = ["glob"] }
indexmap = { version = "1.9.3", default-features = false, features = ["std"] }
log = { version = "0.4.22", default-features = false, features = ["std"] }
miette = { version = "7.4.0", features = ["fancy"] }
num-traits = { version = "0.2.17", features = ["libm"] }
num-traits = { version = "0.2.17" }
owo-colors = { version = "3.5.0", default-features = false, features = ["supports-colors"] }
petgraph = { version = "0.6.5", default-features = false, features = ["graphmap"] }
regex = { version = "1.10.5", default-features = false, features = ["perf", "std"] }
Expand Down

0 comments on commit 3255fd5

Please sign in to comment.