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 34
|
Description: Remove Windows dep
Author: John Goerzen <jgoerzen@complete.org>
Last-Update: 2025-10-15 by Peter Michael Green
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -234,4 +234,4 @@
-[target."cfg(windows)".dependencies.libc_errno]
-version = "0.3.10"
-default-features = false
-package = "errno"
+#[target."cfg(windows)".dependencies.libc_errno]
+#version = "0.3.10"
+#default-features = false
+#package = "errno"
@@ -250,6 +250,6 @@
-[target."cfg(windows)".dependencies.windows-sys]
-version = ">=0.52, <0.62"
-features = [
- "Win32_Foundation",
- "Win32_Networking_WinSock",
-]
+#[target."cfg(windows)".dependencies.windows-sys]
+#version = ">=0.52, <0.62"
+#features = [
+# "Win32_Foundation",
+# "Win32_Networking_WinSock",
+#]
@@ -260,2 +260,2 @@
-[target."cfg(windows)".dev-dependencies.once_cell]
-version = "1.20.3"
+#[target."cfg(windows)".dev-dependencies.once_cell]
+#version = "1.20.3"
|