From 7c4ea9f32752e11d7dabb4af313a24ae2e4cbe47 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 2 Jan 2024 11:56:39 -0800 Subject: [PATCH] Update to windows-sys 0.52. --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e35c1c4..56fe6b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/.github"] [dependencies] #async-std = { version = "1.10.0", optional = true } bitflags = "2.2.3" -cap-std = { version = "2.0.0", optional = true } +cap-std = { version = "2.0.1", optional = true } #cap-async-std = { version = "0.26.0", optional = true } char-device = { version = "0.16.0", optional = true } os_pipe = { version = "1.0.0", features = ["io_safety"], optional = true } @@ -26,12 +26,12 @@ ssh2 = { version = "0.9.1", optional = true } rustix = { version = "0.38.0", features = ["fs", "net"] } [target.'cfg(windows)'.dependencies] -cap-fs-ext = "2.0.0" +cap-fs-ext = "2.0.1" winx = "0.36.0" fd-lock = "4.0.0" [target.'cfg(windows)'.dependencies.windows-sys] -version = "0.48.0" +version = "0.52.0" features = [ "Win32_Foundation", "Win32_Networking_WinSock", @@ -40,9 +40,9 @@ features = [ ] [dev-dependencies] -cap-fs-ext = "2.0.0" -cap-tempfile = "2.0.0" -cap-std = "2.0.0" +cap-fs-ext = "2.0.1" +cap-tempfile = "2.0.1" +cap-std = "2.0.1" tempfile = "3.2.0" [features]