diff --git a/Cargo.lock b/Cargo.lock index 43f6cc140..6b39e43cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1757,12 +1757,13 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tempfile" -version = "3.10.1" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "b8fcd239983515c23a32fb82099f97d0b11b8c72f654ed659363a95c3dad7a53" dependencies = [ "cfg-if", "fastrand", + "once_cell", "rustix 0.38.31", "windows-sys 0.52.0", ] diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 89d680bbe..2eb035f83 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -68,7 +68,7 @@ vec-collections = "0.4.3" codspeed-criterion-compat = "2.6.0" proptest = { version = "1.5.0", default-features = false, features = ["std"]} rand = "0.8.2" -tempfile = "3.10.1" +tempfile = "3.11.0" [[bench]] name = "compute"