diff --git a/Cargo.lock b/Cargo.lock index ab14586d6..e4c47dd20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2554,12 +2554,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/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index 72fe798e5..701cbb70b 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -45,7 +45,7 @@ crossbeam-channel = "0.5.14" thiserror = "2.0.7" prometheus = "0.13.3" strum = { version = "0.26", features = ["derive"] } -tempfile = { version = "3.10", optional = true } +tempfile = { version = "3.15", optional = true } serde_yaml = "0.9" anyhow = "1.0" @@ -82,7 +82,7 @@ signal-hook-registry = "1.4.1" envy = { version = "0.4.2" } serde = "1.0" proptest = "1.2.0" -tempfile = "3.8.0" +tempfile = "3.15.0" crossbeam-queue = "0.3.12" tracing-serde = "0.2.0" serial_test = "3.1.1"