From bd961858a720f32948bb02e06cded472029a9726 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 04:30:51 +0000 Subject: [PATCH] chore(deps): Bump tempfile from 3.6.0 to 3.8.0 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.6.0 to 3.8.0. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.6.0...v3.8.0) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++---------- Cargo.toml | 2 +- lib/file-source/Cargo.toml | 2 +- vdev/Cargo.toml | 2 +- 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 129baa618bf3b..c2ce80006fd75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -412,7 +412,7 @@ dependencies = [ "async-lock", "async-task", "concurrent-queue 2.0.0", - "fastrand", + "fastrand 1.8.0", "futures-lite", "slab", ] @@ -997,7 +997,7 @@ dependencies = [ "aws-types", "bytes 1.5.0", "bytes-utils", - "fastrand", + "fastrand 1.8.0", "http", "http-body", "once_cell", @@ -1183,7 +1183,7 @@ dependencies = [ "aws-smithy-protocol-test", "aws-smithy-types", "bytes 1.5.0", - "fastrand", + "fastrand 1.8.0", "http", "http-body", "hyper", @@ -1599,7 +1599,7 @@ dependencies = [ "async-lock", "async-task", "atomic-waker", - "fastrand", + "fastrand 1.8.0", "futures-lite", ] @@ -3334,6 +3334,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" + [[package]] name = "fiat-crypto" version = "0.1.20" @@ -3562,7 +3568,7 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" dependencies = [ - "fastrand", + "fastrand 1.8.0", "futures-core", "futures-io", "memchr", @@ -8460,15 +8466,14 @@ checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" [[package]] name = "tempfile" -version = "3.6.0" +version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ - "autocfg", "cfg-if", - "fastrand", + "fastrand 2.0.1", "redox_syscall 0.3.5", - "rustix 0.37.19", + "rustix 0.38.14", "windows-sys 0.48.0", ] diff --git a/Cargo.toml b/Cargo.toml index 12161a69e916f..fefc693f0d987 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -367,7 +367,7 @@ quickcheck = "1.0.3" lookup = { package = "vector-lookup", path = "lib/vector-lookup", features = ["test"] } reqwest = { version = "0.11", features = ["json"] } rstest = {version = "0.18.2"} -tempfile = "3.6.0" +tempfile = "3.8.0" test-generator = "0.3.1" tokio = { version = "1.32.0", features = ["test-util"] } tokio-test = "0.4.3" diff --git a/lib/file-source/Cargo.toml b/lib/file-source/Cargo.toml index 65a11baf230b1..d3cb1f39dd457 100644 --- a/lib/file-source/Cargo.toml +++ b/lib/file-source/Cargo.toml @@ -76,7 +76,7 @@ features = ["full"] [dev-dependencies] criterion = "0.5" quickcheck = "1" -tempfile = "3.6.0" +tempfile = "3.8.0" similar-asserts = "1.5.0" [[bench]] diff --git a/vdev/Cargo.toml b/vdev/Cargo.toml index f8adda1574073..d0ea50941e498 100644 --- a/vdev/Cargo.toml +++ b/vdev/Cargo.toml @@ -36,5 +36,5 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.107" serde_yaml = "0.9.25" sha2 = "0.10.7" -tempfile = "3.6.0" +tempfile = "3.8.0" toml = { version = "0.8.0", default-features = false, features = ["parse"] }