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 35 36 37 38 39 40 41
|
Description: comment out dependencies specific to windows and macos
Author: Nadzeya Hutsko <nadzya.info@gmail.com>
Forwarded: not-needed
Last-Update: 2025-09-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -57,20 +57,20 @@
[dependencies.serde_json]
version = "~1.0"
-[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation]
-version = "~0.10"
+# [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation]
+# version = "~0.10"
-[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation-sys]
-version = "~0.8"
+# [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.core-foundation-sys]
+# version = "~0.8"
-[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.io-kit-sys]
-version = "~0.4"
+# [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.io-kit-sys]
+# version = "~0.4"
-[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.libc]
-version = "~0.2"
+# [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.libc]
+# version = "~0.2"
-[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.mach2]
-version = "~0.4"
+# [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.mach2]
+# version = "~0.4"
-[target."cfg(windows)".dependencies.libc]
-version = "0.2"
+# [target."cfg(windows)".dependencies.libc]
+# version = "0.2"
|