From: Fabian Grünbichler Date: Wed, 6 Sep 2023 19:23:24 +0000 (-0600) Subject: d-0021-vendor-remove-windows-dependencies X-Git-Tag: archive/raspbian/1.78.0+dfsg1-2_deb12u3+rpi1~31 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c1b46ea76b278000feacbd488a16c5d6f797563d;p=rustc-web.git d-0021-vendor-remove-windows-dependencies use something like find vendor -iname Cargo.toml -exec grep -H -n -e 'schannel' -e 'windows-sys' -e 'winapi' -e 'ntapi' -e 'wincon' -e 'winreg' -e 'windows' {} \; to find dependencies on windows targets in vendored crates. you will likely need to remove some hunks from this patch after pruning dependencies, since hopefully a few of the crates patched during early rebasing are eliminated. windows-bindgen and windows-metadata should not be removed, they are needed for the build and don't pull in windows-sys and friends. Forwarded: not-needed Signed-off-by: Fabian Grünbichler Gbp-Pq: Topic prune Gbp-Pq: Name d-0021-vendor-remove-windows-dependencies.patch --- diff --git a/vendor/android-tzdata/Cargo.toml b/vendor/android-tzdata/Cargo.toml index 805128a82c..0682717816 100644 --- a/vendor/android-tzdata/Cargo.toml +++ b/vendor/android-tzdata/Cargo.toml @@ -32,3 +32,4 @@ repository = "https://github.com/RumovZ/android-tzdata" [dev-dependencies.zip] version = "0.6.4" +repository = "https://github.com/rust-cli/concolor" diff --git a/vendor/ansi_term/Cargo.toml b/vendor/ansi_term/Cargo.toml index 0e5febabd2..3256c75b0e 100644 --- a/vendor/ansi_term/Cargo.toml +++ b/vendor/ansi_term/Cargo.toml @@ -38,6 +38,3 @@ version = "1.0.39" [features] derive_serde_style = ["serde"] -[target."cfg(target_os=\"windows\")".dependencies.winapi] -version = "0.3.4" -features = ["consoleapi", "errhandlingapi", "fileapi", "handleapi", "processenv"] diff --git a/vendor/anstream/Cargo.toml b/vendor/anstream/Cargo.toml index 94b329df49..de559f10a2 100644 --- a/vendor/anstream/Cargo.toml +++ b/vendor/anstream/Cargo.toml @@ -130,11 +130,4 @@ version = "0.2.0" auto = ["dep:anstyle-query"] default = [ "auto", - "wincon", ] -test = [] -wincon = ["dep:anstyle-wincon"] - -[target."cfg(windows)".dependencies.anstyle-wincon] -version = "3.0.1" -optional = true diff --git a/vendor/anstyle-query/Cargo.toml b/vendor/anstyle-query/Cargo.toml index 63fead3fb0..b3cc66e38f 100644 --- a/vendor/anstyle-query/Cargo.toml +++ b/vendor/anstyle-query/Cargo.toml @@ -72,9 +72,3 @@ replace = """ [Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD""" search = "" -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_System_Console", - "Win32_Foundation", -] diff --git a/vendor/backtrace/Cargo.toml b/vendor/backtrace/Cargo.toml index c13e7ee307..7b01a6f121 100644 --- a/vendor/backtrace/Cargo.toml +++ b/vendor/backtrace/Cargo.toml @@ -104,16 +104,6 @@ serialize-serde = ["serde"] std = [] unix-backtrace = [] verify-winapi = [ - "winapi/dbghelp", - "winapi/handleapi", - "winapi/libloaderapi", - "winapi/memoryapi", - "winapi/minwindef", - "winapi/processthreadsapi", - "winapi/synchapi", - "winapi/tlhelp32", - "winapi/winbase", - "winapi/winnt", ] [target."cfg(not(all(windows, target_env = \"msvc\", not(target_vendor = \"uwp\"))))".dependencies.addr2line] @@ -139,7 +129,3 @@ features = [ "archive", ] default-features = false - -[target."cfg(windows)".dependencies.winapi] -version = "0.3.9" -optional = true diff --git a/vendor/chrono/Cargo.toml b/vendor/chrono/Cargo.toml index 9f0f82f641..59a88907ba 100644 --- a/vendor/chrono/Cargo.toml +++ b/vendor/chrono/Cargo.toml @@ -87,7 +87,7 @@ version = "1" __internal_bench = [] alloc = [] clock = [ - "winapi", + "std", "iana-time-zone", "android-tzdata", "now", @@ -124,7 +124,6 @@ wasmbind = [ "wasm-bindgen", "js-sys", ] -winapi = ["windows-targets"] [target."cfg(all(target_arch = \"wasm32\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))".dependencies.js-sys] version = "0.3" @@ -145,10 +144,3 @@ optional = true version = "0.1.45" features = ["fallback"] optional = true - -[target."cfg(windows)".dependencies.windows-targets] -version = "0.52" -optional = true - -[target."cfg(windows)".dev-dependencies.windows-bindgen] -version = "0.52" diff --git a/vendor/colored/Cargo.toml b/vendor/colored/Cargo.toml index c2134d73ad..9399b38cb6 100644 --- a/vendor/colored/Cargo.toml +++ b/vendor/colored/Cargo.toml @@ -39,10 +39,3 @@ version = "=1.0.0-beta.3" [features] no-color = [] - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.48" -features = [ - "Win32_Foundation", - "Win32_System_Console", -] diff --git a/vendor/console/Cargo.toml b/vendor/console/Cargo.toml index ecc237ca6e..5e477176c8 100644 --- a/vendor/console/Cargo.toml +++ b/vendor/console/Cargo.toml @@ -58,15 +58,3 @@ default = [ "ansi-parsing", ] windows-console-colors = ["ansi-parsing"] - -[target."cfg(windows)".dependencies.encode_unicode] -version = "0.3" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_Foundation", - "Win32_System_Console", - "Win32_Storage_FileSystem", - "Win32_UI_Input_KeyboardAndMouse", -] diff --git a/vendor/ctrlc/Cargo.toml b/vendor/ctrlc/Cargo.toml index 82ebb4233b..a364e82a06 100644 --- a/vendor/ctrlc/Cargo.toml +++ b/vendor/ctrlc/Cargo.toml @@ -56,23 +56,5 @@ features = [ ] default-features = false -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Foundation", - "Win32_System_Threading", - "Win32_Security", - "Win32_System_Console", -] - -[target."cfg(windows)".dev-dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Storage_FileSystem", - "Win32_Foundation", - "Win32_System_IO", - "Win32_System_Console", -] - [badges.maintenance] status = "passively-maintained" diff --git a/vendor/curl-sys/Cargo.toml b/vendor/curl-sys/Cargo.toml index ea20c0352b..0751f3dcb5 100644 --- a/vendor/curl-sys/Cargo.toml +++ b/vendor/curl-sys/Cargo.toml @@ -73,13 +73,6 @@ zlib-ng-compat = [ version = "0.9.64" optional = true -[target."cfg(target_env = \"msvc\")".build-dependencies.vcpkg] -version = "0.2" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = ["Win32_Networking_WinSock"] - [badges.appveyor] repository = "alexcrichton/curl-rust" diff --git a/vendor/curl/Cargo.toml b/vendor/curl/Cargo.toml index fc961dd8d3..d102279498 100644 --- a/vendor/curl/Cargo.toml +++ b/vendor/curl/Cargo.toml @@ -116,17 +116,6 @@ optional = true version = "0.9.64" optional = true -[target."cfg(target_env = \"msvc\")".dependencies.schannel] -version = "0.1.13" - -[target."cfg(target_env = \"msvc\")".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Foundation", - "Win32_System_LibraryLoader", - "Win32_Security_Cryptography", -] - [badges.appveyor] repository = "alexcrichton/curl-rust" diff --git a/vendor/dirs-sys-0.3.7/Cargo.toml b/vendor/dirs-sys-0.3.7/Cargo.toml index 9951d24146..0a86f4d1a4 100644 --- a/vendor/dirs-sys-0.3.7/Cargo.toml +++ b/vendor/dirs-sys-0.3.7/Cargo.toml @@ -22,6 +22,3 @@ version = "0.4" default-features = false [target."cfg(unix)".dependencies.libc] version = "0.2" -[target."cfg(windows)".dependencies.winapi] -version = "0.3" -features = ["knownfolders", "objbase", "shlobj", "winbase", "winerror"] diff --git a/vendor/dirs-sys-next/Cargo.toml b/vendor/dirs-sys-next/Cargo.toml index e9d8d0ca99..acb2eb7dc5 100644 --- a/vendor/dirs-sys-next/Cargo.toml +++ b/vendor/dirs-sys-next/Cargo.toml @@ -25,8 +25,5 @@ version = "0.4.0" default-features = false [target."cfg(unix)".dependencies.libc] version = "0.2" -[target."cfg(windows)".dependencies.winapi] -version = "0.3" -features = ["knownfolders", "objbase", "shlobj", "winbase", "winerror"] [badges.maintenance] status = "as-is" diff --git a/vendor/dlmalloc/Cargo.toml b/vendor/dlmalloc/Cargo.toml index dbc517bb44..dfc6b0ef66 100644 --- a/vendor/dlmalloc/Cargo.toml +++ b/vendor/dlmalloc/Cargo.toml @@ -62,12 +62,3 @@ rustc-dep-of-std = [ [target."cfg(all(unix, not(target_arch = \"wasm32\")))".dependencies.libc] version = "0.2" default-features = false - -[target."cfg(target_os = \"windows\")".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_Foundation", - "Win32_System_Memory", - "Win32_System_Threading", - "Win32_System_SystemInformation", -] diff --git a/vendor/env_logger/Cargo.toml b/vendor/env_logger/Cargo.toml index 3c1e3e60c2..4805266668 100644 --- a/vendor/env_logger/Cargo.toml +++ b/vendor/env_logger/Cargo.toml @@ -99,7 +99,7 @@ harness = false [dependencies.anstream] version = "0.6.11" -features = ["wincon"] +features = [] optional = true default-features = false diff --git a/vendor/errno/Cargo.toml b/vendor/errno/Cargo.toml index e1d0bf5153..60eeb86d40 100644 --- a/vendor/errno/Cargo.toml +++ b/vendor/errno/Cargo.toml @@ -41,9 +41,3 @@ default-features = false version = "0.2" default-features = false -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Foundation", - "Win32_System_Diagnostics_Debug", -] diff --git a/vendor/fd-lock/Cargo.toml b/vendor/fd-lock/Cargo.toml index 88826bc5ae..fbf815df8a 100644 --- a/vendor/fd-lock/Cargo.toml +++ b/vendor/fd-lock/Cargo.toml @@ -43,11 +43,3 @@ version = "3.0.8" [target."cfg(unix)".dependencies.rustix] version = "0.38.0" features = ["fs"] - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_IO", -] diff --git a/vendor/filetime/Cargo.toml b/vendor/filetime/Cargo.toml index 0540ffb89d..2c65fa52e3 100644 --- a/vendor/filetime/Cargo.toml +++ b/vendor/filetime/Cargo.toml @@ -38,10 +38,3 @@ version = "0.4.1" [target."cfg(unix)".dependencies.libc] version = "0.2.27" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_Foundation", - "Win32_Storage_FileSystem", -] diff --git a/vendor/gix-sec/Cargo.toml b/vendor/gix-sec/Cargo.toml index 33cc57e5ee..7ad956487a 100644 --- a/vendor/gix-sec/Cargo.toml +++ b/vendor/gix-sec/Cargo.toml @@ -57,16 +57,3 @@ serde = [ [target."cfg(not(windows))".dependencies.libc] version = "0.2.123" - -[target."cfg(windows)".dependencies.gix-path] -version = "^0.10.4" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = [ - "Win32_Foundation", - "Win32_Security_Authorization", - "Win32_Storage_FileSystem", - "Win32_System_Memory", - "Win32_System_Threading", -] diff --git a/vendor/home/Cargo.toml b/vendor/home/Cargo.toml index 93e3432df9..3bb226f1b7 100644 --- a/vendor/home/Cargo.toml +++ b/vendor/home/Cargo.toml @@ -28,14 +28,6 @@ readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cargo" -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Foundation", - "Win32_UI_Shell", - "Win32_System_Com", -] - [lints.clippy] dbg_macro = "warn" disallowed_methods = "warn" diff --git a/vendor/iana-time-zone/Cargo.toml b/vendor/iana-time-zone/Cargo.toml index ad5488943e..5db5668869 100644 --- a/vendor/iana-time-zone/Cargo.toml +++ b/vendor/iana-time-zone/Cargo.toml @@ -52,6 +52,3 @@ version = "0.1.5" [target."cfg(target_os = \"haiku\")".dependencies.iana-time-zone-haiku] version = "0.1.1" - -[target."cfg(target_os = \"windows\")".dependencies.windows-core] -version = ">=0.50, <=0.52" diff --git a/vendor/ignore-0.4.20/Cargo.toml b/vendor/ignore-0.4.20/Cargo.toml index b397dcf8de..2022a8770f 100644 --- a/vendor/ignore-0.4.20/Cargo.toml +++ b/vendor/ignore-0.4.20/Cargo.toml @@ -64,6 +64,3 @@ version = "0.5.0" [features] simd-accel = ["globset/simd-accel"] - -[target."cfg(windows)".dependencies.winapi-util] -version = "0.1.2" diff --git a/vendor/ignore/Cargo.toml b/vendor/ignore/Cargo.toml index d038e57d76..8a6dc8e446 100644 --- a/vendor/ignore/Cargo.toml +++ b/vendor/ignore/Cargo.toml @@ -77,5 +77,3 @@ version = "0.5.8" [features] simd-accel = [] -[target."cfg(windows)".dependencies.winapi-util] -version = "0.1.2" diff --git a/vendor/is-terminal/Cargo.toml b/vendor/is-terminal/Cargo.toml index 08933a7c1e..b4b0482f7f 100644 --- a/vendor/is-terminal/Cargo.toml +++ b/vendor/is-terminal/Cargo.toml @@ -54,14 +54,3 @@ features = ["stdio"] [target."cfg(target_os = \"hermit\")".dependencies.hermit-abi] version = "0.3.0" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.48.0" -features = [ - "Win32_Foundation", - "Win32_Storage_FileSystem", - "Win32_System_Console", -] - -[target."cfg(windows)".dev-dependencies.tempfile] -version = "3" diff --git a/vendor/libloading/Cargo.toml b/vendor/libloading/Cargo.toml index f56c1b3d48..302b4efb29 100644 --- a/vendor/libloading/Cargo.toml +++ b/vendor/libloading/Cargo.toml @@ -40,12 +40,5 @@ version = "0.2" [dev-dependencies.static_assertions] version = "1.1" -[dev-dependencies.windows-sys] -version = "0.52" -features = ["Win32_Foundation"] - [target."cfg(unix)".dependencies.cfg-if] version = "1" - -[target."cfg(windows)".dependencies.windows-targets] -version = ">=0.48, <0.53" diff --git a/vendor/libssh2-sys/Cargo.toml b/vendor/libssh2-sys/Cargo.toml index 45f4a714fb..516644c6f4 100644 --- a/vendor/libssh2-sys/Cargo.toml +++ b/vendor/libssh2-sys/Cargo.toml @@ -43,16 +43,8 @@ version = "1.0.25" version = "0.3.11" [features] -openssl-on-win32 = ["openssl-sys"] vendored-openssl = ["openssl-sys/vendored"] zlib-ng-compat = ["libz-sys/zlib-ng"] -[target."cfg(target_env = \"msvc\")".build-dependencies.vcpkg] -version = "0.2" - [target."cfg(unix)".dependencies.openssl-sys] version = "0.9.35" - -[target."cfg(windows)".dependencies.openssl-sys] -version = "0.9.35" -optional = true diff --git a/vendor/mio/Cargo.toml b/vendor/mio/Cargo.toml index 5d112d9e26..467ab245b6 100644 --- a/vendor/mio/Cargo.toml +++ b/vendor/mio/Cargo.toml @@ -103,8 +103,6 @@ default = ["log"] net = [] os-ext = [ "os-poll", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_Security", ] os-poll = [] @@ -117,12 +115,3 @@ version = "0.11.0" [target."cfg(unix)".dependencies.libc] version = "0.2.149" -[target."cfg(windows)".dependencies.windows-sys] -version = "0.48" -features = [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_Storage_FileSystem", - "Win32_System_IO", - "Win32_System_WindowsProgramming", -] diff --git a/vendor/native-tls/Cargo.toml b/vendor/native-tls/Cargo.toml index a0592366cd..d36b44b95c 100644 --- a/vendor/native-tls/Cargo.toml +++ b/vendor/native-tls/Cargo.toml @@ -61,6 +61,3 @@ version = "0.1" [target."cfg(not(any(target_os = \"windows\", target_os = \"macos\", target_os = \"ios\")))".dependencies.openssl-sys] version = "0.9.55" - -[target."cfg(target_os = \"windows\")".dependencies.schannel] -version = "0.1.17" diff --git a/vendor/nu-ansi-term-0.46.0/Cargo.toml b/vendor/nu-ansi-term-0.46.0/Cargo.toml index 209e05511d..aa40f02f65 100644 --- a/vendor/nu-ansi-term-0.46.0/Cargo.toml +++ b/vendor/nu-ansi-term-0.46.0/Cargo.toml @@ -45,13 +45,3 @@ version = "1.0.39" [features] derive_serde_style = ["serde"] - -[target."cfg(target_os=\"windows\")".dependencies.winapi] -version = "0.3.4" -features = [ - "consoleapi", - "errhandlingapi", - "fileapi", - "handleapi", - "processenv", -] diff --git a/vendor/opener-0.5.2/Cargo.toml b/vendor/opener-0.5.2/Cargo.toml index 8d91b5ef38..2d7313b718 100644 --- a/vendor/opener-0.5.2/Cargo.toml +++ b/vendor/opener-0.5.2/Cargo.toml @@ -32,10 +32,6 @@ version = "0.9" [target."cfg(target_os = \"linux\")".dependencies.bstr] version = "1" -[target."cfg(windows)".dependencies.winapi] -version = "0.3" -features = ["shellapi"] - [badges.appveyor] branch = "master" repository = "Seeker14491/opener" diff --git a/vendor/opener/Cargo.toml b/vendor/opener/Cargo.toml index 79b4be90d1..69cc269918 100644 --- a/vendor/opener/Cargo.toml +++ b/vendor/opener/Cargo.toml @@ -40,8 +40,6 @@ version = "0.9" reveal = [ "dep:url", "dep:dbus", - "winapi/shtypes", - "winapi/objbase", ] [target."cfg(target_os = \"linux\")".dependencies.bstr] @@ -56,13 +54,6 @@ optional = true version = "2" optional = true -[target."cfg(windows)".dependencies.normpath] -version = "1" - -[target."cfg(windows)".dependencies.winapi] -version = "0.3" -features = ["shellapi"] - [badges.appveyor] branch = "master" repository = "Seeker14491/opener" diff --git a/vendor/os_info/Cargo.toml b/vendor/os_info/Cargo.toml index 52a062f398..e1f347be9e 100644 --- a/vendor/os_info/Cargo.toml +++ b/vendor/os_info/Cargo.toml @@ -48,18 +48,3 @@ version = "1" [features] default = ["serde"] - -[target."cfg(windows)".dependencies.winapi] -version = "0.3.8" -features = [ - "minwindef", - "ntdef", - "ntstatus", - "sysinfoapi", - "winnt", - "winuser", - "libloaderapi", - "processthreadsapi", - "winerror", - "winreg", -] diff --git a/vendor/parking_lot_core/Cargo.toml b/vendor/parking_lot_core/Cargo.toml index 83d9f23dd4..dbe1534516 100644 --- a/vendor/parking_lot_core/Cargo.toml +++ b/vendor/parking_lot_core/Cargo.toml @@ -61,6 +61,3 @@ version = "0.4" [target."cfg(unix)".dependencies.libc] version = "0.2.95" - -[target."cfg(windows)".dependencies.windows-targets] -version = "0.48.0" diff --git a/vendor/reqwest/Cargo.toml b/vendor/reqwest/Cargo.toml index c5b6f53f9f..30ec5e9d08 100644 --- a/vendor/reqwest/Cargo.toml +++ b/vendor/reqwest/Cargo.toml @@ -455,9 +455,3 @@ features = ["serde-serialize"] [target."cfg(target_arch = \"wasm32\")".dev-dependencies.wasm-bindgen-test] version = "0.3" - -[target."cfg(target_os = \"macos\")".dependencies.system-configuration] -version = "0.5.1" - -[target."cfg(windows)".dependencies.winreg] -version = "0.50.0" diff --git a/vendor/rustix/Cargo.toml b/vendor/rustix/Cargo.toml index 8184720b77..974c881f67 100644 --- a/vendor/rustix/Cargo.toml +++ b/vendor/rustix/Cargo.toml @@ -253,20 +253,3 @@ package = "errno" [target."cfg(any(target_os = \"android\", target_os = \"linux\"))".dependencies.once_cell] version = "1.5.2" optional = true - -[target."cfg(windows)".dependencies.libc_errno] -version = "0.3.8" -default-features = false -package = "errno" - -[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)".dev-dependencies.ctor] -version = "0.2.0" diff --git a/vendor/same-file/Cargo.toml b/vendor/same-file/Cargo.toml index 4f668208e7..11ef472467 100644 --- a/vendor/same-file/Cargo.toml +++ b/vendor/same-file/Cargo.toml @@ -25,5 +25,3 @@ license = "Unlicense/MIT" repository = "https://github.com/BurntSushi/same-file" [dev-dependencies.doc-comment] version = "0.3" -[target."cfg(windows)".dependencies.winapi-util] -version = "0.1.1" diff --git a/vendor/snapbox/Cargo.toml b/vendor/snapbox/Cargo.toml index 8cba1eca00..68db44f271 100644 --- a/vendor/snapbox/Cargo.toml +++ b/vendor/snapbox/Cargo.toml @@ -169,7 +169,6 @@ cmd = [ "dep:os_pipe", "dep:wait-timeout", "dep:libc", - "dep:windows-sys", ] color = [ "dep:anstream", @@ -211,8 +210,3 @@ term-svg = [ [target."cfg(unix)".dependencies.libc] version = "0.2.137" optional = true - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52.0" -features = ["Win32_Foundation"] -optional = true diff --git a/vendor/socket2/Cargo.toml b/vendor/socket2/Cargo.toml index 8d36edec0e..2fb63946f0 100644 --- a/vendor/socket2/Cargo.toml +++ b/vendor/socket2/Cargo.toml @@ -75,13 +75,3 @@ all = [] [target."cfg(unix)".dependencies.libc] version = "0.2.150" - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Foundation", - "Win32_Networking_WinSock", - "Win32_System_IO", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", -] diff --git a/vendor/stacker/Cargo.toml b/vendor/stacker/Cargo.toml index 160cbc017c..ba02aac07c 100644 --- a/vendor/stacker/Cargo.toml +++ b/vendor/stacker/Cargo.toml @@ -43,13 +43,3 @@ version = "0.1.7" [build-dependencies.cc] version = "1.0.2" - -[target."cfg(windows)".dependencies.winapi] -version = "0.3.6" -features = [ - "memoryapi", - "winbase", - "fibersapi", - "processthreadsapi", - "minwindef", -] diff --git a/vendor/sysinfo/Cargo.toml b/vendor/sysinfo/Cargo.toml index fbc96e4cea..5f0ef2df0f 100644 --- a/vendor/sysinfo/Cargo.toml +++ b/vendor/sysinfo/Cargo.toml @@ -77,44 +77,3 @@ version = "1.18" [target."cfg(not(any(target_os = \"unknown\", target_arch = \"wasm32\")))".dependencies.libc] version = "^0.2.153" - -[target."cfg(windows)".dependencies.ntapi] -version = "0.4" - -[target."cfg(windows)".dependencies.windows] -version = "0.52" -features = [ - "Wdk_System_SystemInformation", - "Wdk_System_SystemServices", - "Wdk_System_Threading", - "Win32_Foundation", - "Win32_NetworkManagement_IpHelper", - "Win32_NetworkManagement_NetManagement", - "Win32_NetworkManagement_Ndis", - "Win32_Networking_WinSock", - "Win32_Security", - "Win32_Security_Authentication_Identity", - "Win32_Security_Authorization", - "Win32_Storage_FileSystem", - "Win32_System_Com", - "Win32_System_Diagnostics_Debug", - "Win32_System_IO", - "Win32_System_Ioctl", - "Win32_System_LibraryLoader", - "Win32_System_Kernel", - "Win32_System_Memory", - "Win32_System_Ole", - "Win32_System_Performance", - "Win32_System_Power", - "Win32_System_ProcessStatus", - "Win32_System_Registry", - "Win32_System_RemoteDesktop", - "Win32_System_Rpc", - "Win32_System_SystemInformation", - "Win32_System_SystemServices", - "Win32_System_Threading", - "Win32_System_Variant", - "Win32_System_WindowsProgramming", - "Win32_System_Wmi", - "Win32_UI_Shell", -] diff --git a/vendor/tempfile/Cargo.toml b/vendor/tempfile/Cargo.toml index ee1016f8de..88f6a24218 100644 --- a/vendor/tempfile/Cargo.toml +++ b/vendor/tempfile/Cargo.toml @@ -47,10 +47,3 @@ nightly = [] [target."cfg(any(unix, target_os = \"wasi\"))".dependencies.rustix] version = "0.38.31" features = ["fs"] - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.52" -features = [ - "Win32_Storage_FileSystem", - "Win32_Foundation", -] diff --git a/vendor/term/Cargo.toml b/vendor/term/Cargo.toml index e89261eda7..ad5d62bdb2 100644 --- a/vendor/term/Cargo.toml +++ b/vendor/term/Cargo.toml @@ -28,12 +28,6 @@ version = "2" [features] default = [] -[target."cfg(windows)".dependencies.rustversion] -version = "1" - -[target."cfg(windows)".dependencies.winapi] -version = "0.3" -features = ["consoleapi", "wincon", "handleapi", "fileapi"] [badges.appveyor] repository = "Stebalien/term" diff --git a/vendor/termcolor/Cargo.toml b/vendor/termcolor/Cargo.toml index f90eacae76..d32db67ae8 100644 --- a/vendor/termcolor/Cargo.toml +++ b/vendor/termcolor/Cargo.toml @@ -35,6 +35,3 @@ name = "termcolor" bench = false [dev-dependencies] - -[target."cfg(windows)".dependencies.winapi-util] -version = "0.1.3" diff --git a/vendor/terminal_size/Cargo.toml b/vendor/terminal_size/Cargo.toml index f810025e67..0fbe3a1646 100644 --- a/vendor/terminal_size/Cargo.toml +++ b/vendor/terminal_size/Cargo.toml @@ -30,10 +30,3 @@ repository = "https://github.com/eminence/terminal-size" [target."cfg(not(windows))".dependencies.rustix] version = "0.38.0" features = ["termios"] - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.48.0" -features = [ - "Win32_Foundation", - "Win32_System_Console", -] diff --git a/vendor/termize/Cargo.toml b/vendor/termize/Cargo.toml index d248f4db5e..9bd9f37e65 100644 --- a/vendor/termize/Cargo.toml +++ b/vendor/termize/Cargo.toml @@ -49,8 +49,5 @@ rpath = false [dependencies] [target."cfg(unix)".dependencies.libc] version = "0.2.66" -[target."cfg(windows)".dependencies.winapi] -version = "0.3.8" -features = ["handleapi", "processenv", "wincon", "winbase"] [badges.cirrus-ci] repository = "JohnTitor/termize" diff --git a/vendor/tokio-native-tls/Cargo.toml b/vendor/tokio-native-tls/Cargo.toml index 76be3d3939..3ada811d2f 100644 --- a/vendor/tokio-native-tls/Cargo.toml +++ b/vendor/tokio-native-tls/Cargo.toml @@ -76,20 +76,3 @@ version = "0.10" [target."cfg(any(target_os = \"macos\", target_os = \"ios\"))".dev-dependencies.security-framework] version = "0.2" - -[target."cfg(windows)".dev-dependencies.schannel] -version = "0.1" - -[target."cfg(windows)".dev-dependencies.winapi] -version = "0.3" -features = [ - "lmcons", - "basetsd", - "minwinbase", - "minwindef", - "ntdef", - "sysinfoapi", - "timezoneapi", - "wincrypt", - "winerror", -] diff --git a/vendor/tokio/Cargo.toml b/vendor/tokio/Cargo.toml index a0d1781984..686cba95d0 100644 --- a/vendor/tokio/Cargo.toml +++ b/vendor/tokio/Cargo.toml @@ -130,11 +130,6 @@ net = [ "mio/os-ext", "mio/net", "socket2", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_Security", - "windows-sys/Win32_Storage_FileSystem", - "windows-sys/Win32_System_Pipes", - "windows-sys/Win32_System_SystemServices", ] process = [ "bytes", @@ -143,9 +138,6 @@ process = [ "mio/os-ext", "mio/net", "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Threading", - "windows-sys/Win32_System_WindowsProgramming", ] rt = [] rt-multi-thread = [ @@ -158,8 +150,6 @@ signal = [ "mio/net", "mio/os-ext", "signal-hook-registry", - "windows-sys/Win32_Foundation", - "windows-sys/Win32_System_Console", ] sync = [] test-util = [ @@ -224,14 +214,3 @@ features = [ "socket", ] default-features = false - -[target."cfg(windows)".dependencies.windows-sys] -version = "0.48" -optional = true - -[target."cfg(windows)".dev-dependencies.windows-sys] -version = "0.48" -features = [ - "Win32_Foundation", - "Win32_Security_Authorization", -] diff --git a/vendor/uuid/Cargo.toml b/vendor/uuid/Cargo.toml index 320fd4c533..5bca38442c 100644 --- a/vendor/uuid/Cargo.toml +++ b/vendor/uuid/Cargo.toml @@ -197,7 +197,6 @@ version = "0.3" [target."cfg(target = \"wasm32-unknown-unknown\")".dev-dependencies.wasm-bindgen] version = "0.2" - [badges.is-it-maintained-issue-resolution] repository = "uuid-rs/uuid" diff --git a/vendor/walkdir/Cargo.toml b/vendor/walkdir/Cargo.toml index 4fda2f4c23..17416776f2 100644 --- a/vendor/walkdir/Cargo.toml +++ b/vendor/walkdir/Cargo.toml @@ -39,9 +39,6 @@ version = "1.0.1" [dev-dependencies.doc-comment] version = "0.3" -[target."cfg(windows)".dependencies.winapi-util] -version = "0.1.1" - [badges.appveyor] repository = "BurntSushi/walkdir" diff --git a/vendor/yansi-term/Cargo.toml b/vendor/yansi-term/Cargo.toml index 0317866829..88ce8efcfb 100644 --- a/vendor/yansi-term/Cargo.toml +++ b/vendor/yansi-term/Cargo.toml @@ -36,9 +36,6 @@ version = "1.0" [features] derive_serde_style = ["serde"] -[target."cfg(target_os=\"windows\")".dependencies.winapi] -version = "0.3.4" -features = ["consoleapi", "errhandlingapi", "fileapi", "handleapi", "processenv"] [badges.maintenance] status = "actively-developed"