From 09331a8333a0bb2b85554b99ba9801e7452f9e51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:41:14 +0000 Subject: [PATCH] chore(deps): bump tempfile from 3.8.1 to 3.9.0 Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.8.1 to 3.9.0. - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.8.1...v3.9.0) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- chain/Cargo.toml | 4 ++-- core/Cargo.toml | 2 +- exo/Cargo.toml | 2 +- store/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a63638e7d..0a0e0df8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5354,15 +5354,15 @@ checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" [[package]] name = "tempfile" -version = "3.8.1" +version = "3.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" +checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" dependencies = [ "cfg-if", "fastrand", "redox_syscall 0.4.1", "rustix 0.38.28", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] diff --git a/chain/Cargo.toml b/chain/Cargo.toml index eb6edc741..9d487f88c 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -35,12 +35,12 @@ extindex = { version = "0.5.1", optional = true } memmap2 = { version = "0.9.3", optional = true } # For tests -tempfile = { version = "3.8.1", optional = true } +tempfile = { version = "3.9.0", optional = true } [dev-dependencies] exocore-core = {version = "0.1.25", path = "../core", features = ["tests-utils"]} exocore-transport = {version = "0.1.25", path = "../transport", features = ["tests-utils"]} -tempfile = "3.8.1" +tempfile = "3.9.0" tokio = { version = "1.35.1", features = ["macros"], default-features = false } [[test]] diff --git a/core/Cargo.toml b/core/Cargo.toml index 49069fa5a..72c984909 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -72,7 +72,7 @@ shadow-rs = { version = "0.25.0", default-features = false } [dev-dependencies] criterion_bencher_compat = "0.4.0" log4rs = "1.2.0" -tempfile = "3.8.1" +tempfile = "3.9.0" tokio = { version = "1.35.1", features = ["macros", "rt", "rt-multi-thread", "time"], default-features = false } [[bench]] diff --git a/exo/Cargo.toml b/exo/Cargo.toml index 10117e455..8e1658a92 100644 --- a/exo/Cargo.toml +++ b/exo/Cargo.toml @@ -32,7 +32,7 @@ reqwest = { version = "0.11.23", default-features = false, features = ["rustls-t serde = "1.0.193" serde_derive = "1.0.193" serde_json = "1.0.109" -tempfile = "3.8.1" +tempfile = "3.9.0" thiserror = "1.0.56" tokio = { version = "1.35.1", features = ["macros"], default-features = false } url = "2.5.0" diff --git a/store/Cargo.toml b/store/Cargo.toml index bf82e7262..0a3b16215 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -57,5 +57,5 @@ tantivy = {version = "0.19.2", optional = true} [dev-dependencies] exocore-chain = {version = "0.1.25", path = "../chain", features = ["tests-utils"]} exocore-core = {version = "0.1.25", path = "../core", features = ["tests-utils"]} -tempfile = "3.8.1" +tempfile = "3.9.0" tokio = {version = "1.35.1", features = ["macros"], default-features = false}