diff --git a/Cargo.lock b/Cargo.lock index 902d709..86384c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3031,14 +3031,15 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[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", + "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -3878,6 +3879,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/Cargo.toml b/Cargo.toml index 7d21373..8b44598 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ iced_layershell = { version = "0.4.0-dev", path = "./iced_layershell" } iced_sessionlock = { version = "0.4.0-dev", path = "./iced_sessionlock" } waycrate_xkbkeycode = { version = "0.4.0-dev", path = "./waycrate_xkbkeycode" } -tempfile = "3.10.1" +tempfile = "3.12.0" thiserror = "1.0.63" wayland-client = { version = "0.31.5" }