From 98123059420301308714b476eb84cbf72bc21980 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 10 Oct 2019 12:05:09 -0400 Subject: [PATCH] Use winapi fork that supports UWP arm64 target. --- Cargo.lock | 9 +++------ Cargo.toml | 2 ++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a77dfd47616..00700bff6cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5994,8 +5994,7 @@ dependencies = [ [[package]] name = "winapi" version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" +source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" dependencies = [ "winapi-i686-pc-windows-gnu", "winapi-x86_64-pc-windows-gnu", @@ -6004,8 +6003,7 @@ dependencies = [ [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" [[package]] name = "winapi-util" @@ -6019,8 +6017,7 @@ dependencies = [ [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" [[package]] name = "wincolor" diff --git a/Cargo.toml b/Cargo.toml index 2bfc0013f4d..f054327d267 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,3 +31,5 @@ rand_os = { git = "https://github.com/servo/rand", branch = "servo-rand_os-0.1.3 rand_core = { git = "https://github.com/servo/rand", branch = "servo-rand_os-0.1.3-uwp" } # https://github.com/cuviper/autocfg/pull/10 autocfg = { git = "https://github.com/servo/autocfg", branch = "rustflags" } +# https://github.com/retep998/winapi-rs/pull/816 +winapi = { git = "https://github.com/servo/winapi-rs", branch = "patch-1" }