From 7c4f0af092c6b3527b045e7d03be841b799b2909 Mon Sep 17 00:00:00 2001 From: Olaf Buddenhagen Date: Tue, 8 Nov 2016 21:55:56 +0100 Subject: [PATCH] Update `ipc-channel` dependency to 0.6 Doing a tree-wide update, mostly to make sure nobody accidentally breaks the new interface, where `ipc_channel::Sender` is no longer `Sync`. --- Cargo.lock | 8 ++++---- webrender/Cargo.toml | 2 +- webrender_traits/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12e6b6b848..bae9bde2e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -290,7 +290,7 @@ dependencies = [ [[package]] name = "ipc-channel" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bincode 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -777,7 +777,7 @@ dependencies = [ "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "freetype 0.1.1 (git+https://github.com/servo/rust-freetype)", "gleam 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-traits 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)", @@ -797,7 +797,7 @@ dependencies = [ "euclid 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", "gleam 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "ipc-channel 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "offscreen_gl_context 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.8.16 (registry+https://github.com/rust-lang/crates.io-index)", "serde_codegen 0.8.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -887,7 +887,7 @@ dependencies = [ "checksum gleam 0.2.24 (registry+https://github.com/rust-lang/crates.io-index)" = "b04d6c8a1df841e48dfe99ed67829c9d1d17b1bb3e44c5f3283992010e20359b" "checksum glutin 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "06786fae66e7aa8464b3d8d3fb7a7c470f89d62ae511f9613ea7fbbeef61d680" "checksum heapsize 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8c80e194758495a9109566134dc06e42ea0423987d6ceca016edaa90381b3549" -"checksum ipc-channel 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "675587430ede6756dd03fdfdf9888f22f83855fd131c8451d842a710b059e571" +"checksum ipc-channel 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f379ec6400f5cb93edbbb0ac56de3bf38331e22cbae9e27a10f04c1a0b4f8e90" "checksum itoa 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae3088ea4baeceb0284ee9eea42f591226e6beaecf65373e41b38d95a1b8e7a1" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum khronos_api 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "09c9d3760673c427d46f91a0350f0a84a52e6bc5a84adf26dc610b6c52436630" diff --git a/webrender/Cargo.toml b/webrender/Cargo.toml index d6b5484613..d18d07b464 100644 --- a/webrender/Cargo.toml +++ b/webrender/Cargo.toml @@ -18,7 +18,7 @@ byteorder = "0.5" euclid = "0.10" fnv="1.0" gleam = "0.2" -ipc-channel = "0.5" +ipc-channel = "0.6" lazy_static = "0.2" log = "0.3" num-traits = "0.1.32" diff --git a/webrender_traits/Cargo.toml b/webrender_traits/Cargo.toml index ddce715bf0..cbd443cd19 100644 --- a/webrender_traits/Cargo.toml +++ b/webrender_traits/Cargo.toml @@ -21,7 +21,7 @@ heapsize = "0.3.6" offscreen_gl_context = {version = "0.4.5", features = ["serde_serialization"]} serde = "0.8" serde_derive = {version = "0.8", optional = true} -ipc-channel = "0.5.0" +ipc-channel = "0.6" [target.x86_64-apple-darwin.dependencies] core-graphics = "0.4"