From 5d4816c5f41696791fb9960d9d95b97ece6485fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 05:48:41 +0000 Subject: [PATCH] chore(deps): Bump proptest from 1.5.0 to 1.6.0 Bumps [proptest](https://github.com/proptest-rs/proptest) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/proptest-rs/proptest/releases) - [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md) - [Commits](https://github.com/proptest-rs/proptest/commits) --- updated-dependencies: - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- lib/vector-buffers/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 4 ++-- lib/vector-stream/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b747815708c8d..b2dda9cc7ad90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7390,12 +7390,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 0.8.0", + "bit-vec 0.8.0", "bitflags 2.6.0", "lazy_static", "num-traits", diff --git a/Cargo.toml b/Cargo.toml index f4441d68f60e3..a040ebe59713b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -148,7 +148,7 @@ metrics = "0.24.1" metrics-tracing-context = { version = "0.17.0", default-features = false } metrics-util = { version = "0.18.0", default-features = false, features = ["registry"] } pin-project = { version = "1.1.7", default-features = false } -proptest = { version = "1.5" } +proptest = { version = "1.6" } proptest-derive = { version = "0.5.0" } prost = { version = "0.12", default-features = false, features = ["std"] } prost-build = { version = "0.12", default-features = false } diff --git a/lib/vector-buffers/Cargo.toml b/lib/vector-buffers/Cargo.toml index c5cb30b553d3e..55fb02ecdc6bb 100644 --- a/lib/vector-buffers/Cargo.toml +++ b/lib/vector-buffers/Cargo.toml @@ -40,7 +40,7 @@ crossbeam-queue = "0.3.11" hdrhistogram = "7.5.4" metrics-tracing-context.workspace = true metrics-util = { workspace = true, features = ["debugging"] } -proptest = "1.5" +proptest = "1.6" quickcheck = "1.0" rand = "0.8.5" serde_yaml = { version = "0.9", default-features = false } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index 3d9daa9c572a5..7e0e94a9f253c 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -36,7 +36,7 @@ ordered-float = { version = "4.5.0", default-features = false } openssl = { version = "0.10.68", default-features = false, features = ["vendored"] } parking_lot = { version = "0.12.3", default-features = false } pin-project.workspace = true -proptest = { version = "1.5", optional = true } +proptest = { version = "1.6", optional = true } prost-types.workspace = true prost .workspace = true quanta = { version = "0.12.3", default-features = false } @@ -81,7 +81,7 @@ criterion = { version = "0.5.1", features = ["html_reports"] } env-test-util = "1.0.1" quickcheck = "1" quickcheck_macros = "1" -proptest = "1.5" +proptest = "1.6" similar-asserts = "1.6.0" tokio-test = "0.4.4" toml.workspace = true diff --git a/lib/vector-stream/Cargo.toml b/lib/vector-stream/Cargo.toml index 5c9077b4cf20b..ae14a58ca0c4d 100644 --- a/lib/vector-stream/Cargo.toml +++ b/lib/vector-stream/Cargo.toml @@ -19,6 +19,6 @@ vector-common = { path = "../vector-common" } vector-core = { path = "../vector-core" } [dev-dependencies] -proptest = "1.5" +proptest = "1.6" rand = "0.8.5" rand_distr = "0.4.3"