From 3255fd51c18429a704d25f4628a045e740415179 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Sat, 4 Jan 2025 12:23:00 +0000 Subject: [PATCH] Update Rust crate proptest to 1.6.0 --- Cargo.lock | 27 +++++------------------ guppy-cmdlib/Cargo.toml | 2 +- guppy/Cargo.toml | 2 +- internal-tools/benchmarks/Cargo.toml | 2 +- internal-tools/cargo-compare/Cargo.toml | 2 +- internal-tools/fixture-manager/Cargo.toml | 2 +- internal-tools/proptest-ext/Cargo.toml | 2 +- target-spec/Cargo.toml | 2 +- tools/hakari/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 4 +++- 10 files changed, 17 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 84b75f653ee..67eef1bb37e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,30 +247,15 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7" -[[package]] -name = "bit-set" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" -dependencies = [ - "bit-vec 0.6.3", -] - [[package]] name = "bit-set" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" dependencies = [ - "bit-vec 0.8.0", + "bit-vec", ] -[[package]] -name = "bit-vec" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" - [[package]] name = "bit-vec" version = "0.8.0" @@ -1319,7 +1304,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298" dependencies = [ - "bit-set 0.8.0", + "bit-set", "regex-automata 0.4.5", "regex-syntax 0.8.2", ] @@ -3369,12 +3354,12 @@ dependencies = [ [[package]] name = "proptest" -version = "1.5.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ - "bit-set 0.5.3", - "bit-vec 0.6.3", + "bit-set", + "bit-vec", "bitflags 2.6.0", "lazy_static", "num-traits", diff --git a/guppy-cmdlib/Cargo.toml b/guppy-cmdlib/Cargo.toml index cfd59c7cbb8..a8014e96c69 100644 --- a/guppy-cmdlib/Cargo.toml +++ b/guppy-cmdlib/Cargo.toml @@ -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] diff --git a/guppy/Cargo.toml b/guppy/Cargo.toml index 1af6cdf4dcc..8302cba43a7 100644 --- a/guppy/Cargo.toml +++ b/guppy/Cargo.toml @@ -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" diff --git a/internal-tools/benchmarks/Cargo.toml b/internal-tools/benchmarks/Cargo.toml index 3c48fe58ccc..ccc8ef248eb 100644 --- a/internal-tools/benchmarks/Cargo.toml +++ b/internal-tools/benchmarks/Cargo.toml @@ -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 diff --git a/internal-tools/cargo-compare/Cargo.toml b/internal-tools/cargo-compare/Cargo.toml index 048256cc31b..84abd0733c9 100644 --- a/internal-tools/cargo-compare/Cargo.toml +++ b/internal-tools/cargo-compare/Cargo.toml @@ -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" diff --git a/internal-tools/fixture-manager/Cargo.toml b/internal-tools/fixture-manager/Cargo.toml index 1686836966d..d5a4b4a2f1b 100644 --- a/internal-tools/fixture-manager/Cargo.toml +++ b/internal-tools/fixture-manager/Cargo.toml @@ -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 diff --git a/internal-tools/proptest-ext/Cargo.toml b/internal-tools/proptest-ext/Cargo.toml index 8588aa668a2..c20b4d4abd9 100644 --- a/internal-tools/proptest-ext/Cargo.toml +++ b/internal-tools/proptest-ext/Cargo.toml @@ -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 diff --git a/target-spec/Cargo.toml b/target-spec/Cargo.toml index 9f73f96003c..86740a8bcc8 100644 --- a/target-spec/Cargo.toml +++ b/target-spec/Cargo.toml @@ -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"] } diff --git a/tools/hakari/Cargo.toml b/tools/hakari/Cargo.toml index a19b53cb3a6..738009d07ac 100644 --- a/tools/hakari/Cargo.toml +++ b/tools/hakari/Cargo.toml @@ -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 } diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 892ed8f1e31..b0a172d7062 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -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"] } @@ -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"] }