From 0e95f700e5ad389c164f6ae0714ddbd10443eba7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:23:36 +0000 Subject: [PATCH] build(deps): bump tempfile from 3.9.0 to 3.10.0 (#1685) --- Cargo.lock | 22 ++++++---------------- crates/volta-core/Cargo.toml | 2 +- crates/volta-migrate/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fec38e151..8e41f4f0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -516,7 +516,7 @@ checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.10", + "redox_syscall", "winapi", ] @@ -1124,15 +1124,6 @@ dependencies = [ "bitflags 1.3.2", ] -[[package]] -name = "redox_syscall" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" -dependencies = [ - "bitflags 1.3.2", -] - [[package]] name = "redox_users" version = "0.4.0" @@ -1140,7 +1131,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64" dependencies = [ "getrandom", - "redox_syscall 0.2.10", + "redox_syscall", ] [[package]] @@ -1185,9 +1176,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.30" +version = "0.38.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" +checksum = "6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949" dependencies = [ "bitflags 2.4.1", "errno", @@ -1433,13 +1424,12 @@ checksum = "37c12559dba7383625faaff75be24becf35bfc885044375bcab931111799a3da" [[package]] name = "tempfile" -version = "3.9.0" +version = "3.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" +checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" dependencies = [ "cfg-if", "fastrand", - "redox_syscall 0.4.1", "rustix", "windows-sys 0.52.0", ] diff --git a/crates/volta-core/Cargo.toml b/crates/volta-core/Cargo.toml index 56ffe550e..00ee862d2 100644 --- a/crates/volta-core/Cargo.toml +++ b/crates/volta-core/Cargo.toml @@ -24,7 +24,7 @@ node-semver = "2" cmdline_words_parser = "0.2.1" fs-utils = { path = "../fs-utils" } cfg-if = "1.0" -tempfile = "3.9.0" +tempfile = "3.10.0" os_info = "3.7.0" detect-indent = "0.1" envoy = "0.1.3" diff --git a/crates/volta-migrate/Cargo.toml b/crates/volta-migrate/Cargo.toml index 456583e0d..110929561 100644 --- a/crates/volta-migrate/Cargo.toml +++ b/crates/volta-migrate/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" volta-core = { path = "../volta-core" } volta-layout = { path = "../volta-layout" } log = { version = "0.4", features = ["std"] } -tempfile = "3.9.0" +tempfile = "3.10.0" node-semver = "2" serde_json = { version = "1.0.113", features = ["preserve_order"] } serde = { version = "1.0.196", features = ["derive"] }