diff --git a/Cargo.lock b/Cargo.lock index a98f3c87d..fd835ba0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1738,12 +1738,13 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[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 0.38.40", "windows-sys 0.59.0", diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 5bf4bf6fa..9a1c1f1f2 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -68,7 +68,7 @@ vec-collections = "0.4.3" codspeed-criterion-compat = "2.7.2" proptest = { version = "1.6.0", default-features = false, features = ["std"]} rand = "0.8.2" -tempfile = "3.14.0" +tempfile = "3.15.0" [[bench]] name = "compute"