diff --git a/Cargo.lock b/Cargo.lock index efab3d84..6d0a6f27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1499,15 +1499,6 @@ version = "0.6.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" -[[package]] -name = "remove_dir_all" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -dependencies = [ - "winapi", -] - [[package]] name = "rgb" version = "0.8.35" @@ -1834,16 +1825,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" dependencies = [ "cfg-if", "fastrand", - "libc", "redox_syscall", - "remove_dir_all", - "winapi", + "rustix", + "windows-sys 0.42.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 30e4437a..5f27ab60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ pprof = { version = "0.11", features = ["flamegraph"], optional = true } [dev-dependencies] pretty_assertions = "1.3" -tempfile = "3.2" +tempfile = "3.4" [badges] maintenance = { status = "actively-developed" } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 50171a35..cbc6e3d1 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -33,7 +33,7 @@ env_logger = "0.10" invalidstring = { path = "../invalidstring", version = "0.1" } pretty_assertions = "1.3" serial_test = "1.0" -tempfile = "3.2" +tempfile = "3.4" [features] default = ["trace-libgit"]