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 42 43 44 45 46
|
Description: Remove dependencies for the windows target
Author: Mike Hommey <glandium@debian.org>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: git-cinnabar/Cargo.toml
===================================================================
--- git-cinnabar.orig/Cargo.toml
+++ git-cinnabar/Cargo.toml
@@ -60,8 +60,6 @@ self-update = [
"dep:concat_const",
"dep:tar",
"dep:xz2",
- "dep:zip",
- "windows-sys/Win32_System_Threading",
]
version-check = ["shared_child"]
@@ -252,28 +250,6 @@ optional = true
version = "0.1"
optional = true
-[target."cfg(windows)".dependencies.curl-sys]
-version = "0.4"
-features = [
- "ssl",
- "static-curl",
-]
-default-features = false
-
-[target."cfg(windows)".dependencies.libz-sys]
-version = "1"
-features = ["static"]
-
-[target."cfg(windows)".dependencies.windows-sys]
-version = "0.59"
-features = ["Win32_Foundation"]
-
-[target."cfg(windows)".dependencies.zip]
-version = "2"
-features = ["deflate-zlib"]
-optional = true
-default-features = false
-
[profile.dev]
panic = "abort"
|