1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Description: Remove Windows dep
Author: John Goerzen <jgoerzen@complete.org>
Last-Update: 2023-05-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -264,4 +264,4 @@
-[target."cfg(windows)".dependencies.libc_errno]
-version = "0.3.8"
-default-features = false
-package = "errno"
+#[target."cfg(windows)".dependencies.libc_errno]
+#version = "0.3.8"
+#default-features = false
+#package = "errno"
@@ -269,8 +269,8 @@
-[target."cfg(windows)".dependencies.windows-sys]
-version = "0.52.0"
-features = [
- "Win32_Foundation",
- "Win32_Networking_WinSock",
- "Win32_NetworkManagement_IpHelper",
- "Win32_System_Threading",
-]
+#[target."cfg(windows)".dependencies.windows-sys]
+#version = "0.52.0"
+#features = [
+# "Win32_Foundation",
+# "Win32_Networking_WinSock",
+# "Win32_NetworkManagement_IpHelper",
+# "Win32_System_Threading",
+#]
|