From 3a82c2e611ff69a00a53bce9637ebca2b8a690b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 22:36:39 +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 | 12 ++++++------ Cargo.toml | 2 +- lib/vector-buffers/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 4 ++-- lib/vector-stream/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fca98926a83ad..0fd2604bf67ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4524,7 +4524,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.10", + "socket2 0.5.8", "tokio", "tower-service", "tracing 0.1.41", @@ -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", @@ -7525,7 +7525,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5" dependencies = [ "anyhow", - "itertools 0.11.0", + "itertools 0.13.0", "proc-macro2 1.0.92", "quote 1.0.37", "syn 2.0.90", diff --git a/Cargo.toml b/Cargo.toml index 93adae89d8432..9353e6c416eae 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 3e18607703cc9..ec0d83d61d6f7 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 89c8170882bd7..8e1e5a406291e 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 fbf4dc66cf896..fa3fa43d332a4 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"