diff --git a/Cargo.lock b/Cargo.lock index bece40a2c..5f8a76bcb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2766,14 +2766,15 @@ checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" [[package]] name = "tempfile" -version = "3.10.1" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if", "fastrand 2.1.0", + "once_cell", "rustix 0.38.34", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3475,6 +3476,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.42.2" diff --git a/integration/sheepdog/Cargo.toml b/integration/sheepdog/Cargo.toml index 2b0889359..44eae254d 100644 --- a/integration/sheepdog/Cargo.toml +++ b/integration/sheepdog/Cargo.toml @@ -12,7 +12,7 @@ anyhow = "1.0" escargot = "0.5.8" serde_json = "1.0" shared = { path = "../shared" } -tempfile = "3.8" +tempfile = "3.12" tokio = { version = "1.32", features = ["rt", "macros", "fs", "io-util", "process", "signal", "time", "net"] } tonic = { version = "0.9", default-features = false, features = ["transport", "prost"]} tower = { version = "0.4", default-features = false, features = ["timeout", "limit", "load-shed"] } diff --git a/lading/Cargo.toml b/lading/Cargo.toml index c85f6a942..5de56b257 100644 --- a/lading/Cargo.toml +++ b/lading/Cargo.toml @@ -61,7 +61,7 @@ async-pidfd = "0.1" [dev-dependencies] proptest = "1.4" proptest-derive = "0.4.0" -tempfile = "3.8.1" +tempfile = "3.12.0" warp = "0.3"