diff --git a/Cargo.lock b/Cargo.lock index fad002c65..484b2c74e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3002,12 +3002,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 2.3.0", + "getrandom", "once_cell", "rustix 0.38.42", "windows-sys 0.59.0", diff --git a/integration/sheepdog/Cargo.toml b/integration/sheepdog/Cargo.toml index a17011157..8aaef3322 100644 --- a/integration/sheepdog/Cargo.toml +++ b/integration/sheepdog/Cargo.toml @@ -11,7 +11,7 @@ publish = false anyhow = "1.0" escargot = "0.5.13" shared = { path = "../shared" } -tempfile = "3.13" +tempfile = "3.15" tokio = { version = "1.41", features = [ "rt", "macros", diff --git a/lading/Cargo.toml b/lading/Cargo.toml index 6bdd0db7b..27fd22f0b 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -95,7 +95,7 @@ procfs = { version = "0.17", default-features = false, features = [] } async-pidfd = "0.1" [dev-dependencies] -tempfile = "3.13" +tempfile = "3.15" warp = "0.3" proptest = "1.6"