diff options
author | atouchet <alextouchet@outlook.com> | 2020-06-26 17:42:17 -0700 |
---|---|---|
committer | atouchet <alextouchet@outlook.com> | 2020-06-26 17:42:17 -0700 |
commit | 8a9cbcd9c5c5faf79cec0d03fd189fdf65510c2d (patch) | |
tree | d1ecd7f1366743b2a615e89ce4f85f712c317cb6 | |
parent | e0e2392ebbffc2397cabf7c7505236e134d6a65a (diff) | |
download | servo-8a9cbcd9c5c5faf79cec0d03fd189fdf65510c2d.tar.gz servo-8a9cbcd9c5c5faf79cec0d03fd189fdf65510c2d.zip |
Update winapi
-rw-r--r-- | Cargo.lock | 11 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index b1ef81aa2eb..88783797a98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6613,8 +6613,9 @@ dependencies = [ [[package]] name = "winapi" -version = "0.3.8" -source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" dependencies = [ "winapi-i686-pc-windows-gnu", "winapi-x86_64-pc-windows-gnu", @@ -6623,7 +6624,8 @@ dependencies = [ [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" -source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" @@ -6637,7 +6639,8 @@ dependencies = [ [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" -source = "git+https://github.com/servo/winapi-rs?branch=patch-1#f85c3541bbb331fea8918ac070accfb4ab613e7b" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "winit" diff --git a/Cargo.toml b/Cargo.toml index a06252fd1fa..cf04bfa64c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,5 +30,3 @@ opt-level = 3 mio = { git = "https://github.com/servo/mio.git", branch = "servo" } surfman = { git = "https://github.com/servo/surfman" } surfman-chains = { git = "https://github.com/asajeffrey/surfman-chains" } -# https://github.com/retep998/winapi-rs/pull/816 -winapi = { git = "https://github.com/servo/winapi-rs", branch = "patch-1" } |