From f202f364c99af31e7e929a853d9713ec927e38e5 Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Sat, 8 Jan 2022 21:27:45 +0100 Subject: [PATCH] Update `tempfile` --- Cargo.lock | 15 ++++++++++++--- audio/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b61cf71..15a0c562 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,6 +450,15 @@ dependencies = [ "termcolor", ] +[[package]] +name = "fastrand" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2" +dependencies = [ + "instant", +] + [[package]] name = "fixedbitset" version = "0.2.0" @@ -2555,13 +2564,13 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.2.0" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" dependencies = [ "cfg-if 1.0.0", + "fastrand", "libc", - "rand", "redox_syscall", "remove_dir_all", "winapi", diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 3df80c77..bd5eb455 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -19,6 +19,6 @@ futures-util = "0.3" hyper = { version = "0.14", features = ["client"] } log = "0.4" parking_lot = { version = "0.11", features = ["deadlock_detection"] } -tempfile = "3.1" +tempfile = "3" thiserror = "1.0" tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }