From 4be4ef8b7478d155077b54736e07f96ea1a61460 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:51:25 +0000 Subject: [PATCH] chore(deps): bump tempfile in the minor-patches group Bumps the minor-patches group with 1 update: [tempfile](https://github.com/Stebalien/tempfile). Updates `tempfile` from 3.14.0 to 3.15.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.14.0...v3.15.0) --- updated-dependencies: - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patches ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- crates/applesauce/Cargo.toml | 2 +- crates/resource-fork/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dd7b9eb..2970f16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -962,12 +962,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.14.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c" +checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" dependencies = [ "cfg-if", "fastrand", + "getrandom", "once_cell", "rustix", "windows-sys 0.59.0", diff --git a/crates/applesauce/Cargo.toml b/crates/applesauce/Cargo.toml index ed7610b..6381551 100644 --- a/crates/applesauce/Cargo.toml +++ b/crates/applesauce/Cargo.toml @@ -31,7 +31,7 @@ crossbeam-channel = "0.5.13" libc = "0.2.155" memchr = "2.7" oneshot = "0.1.8" -tempfile = "3.10.1" +tempfile = "3.15.0" tracing = "0.1.40" jwalk = "0.8" diff --git a/crates/resource-fork/Cargo.toml b/crates/resource-fork/Cargo.toml index 271358d..c74598d 100644 --- a/crates/resource-fork/Cargo.toml +++ b/crates/resource-fork/Cargo.toml @@ -16,5 +16,5 @@ harness = false libc = "0.2" [dev-dependencies] -tempfile = "3.10.1" +tempfile = "3.15.0" criterion = { version = "0.5.1", features = ["html_reports"] }