From 2fd4f652f4257fc780533867dc9f068d5c51f0cb Mon Sep 17 00:00:00 2001 From: Dan Robertson Date: Mon, 20 Feb 2017 19:44:18 +0000 Subject: [PATCH] Update servo to include latest ipc-channel changes --- Cargo.lock | 9 ++++++++- Cargo.toml | 4 ++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 5f8a1f363c22..98a8bd4ba3f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1252,7 +1252,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/danlrobertson/ipc-channel?rev=shmem#e120320968469a414013db5f6d6de632f0a281d8" dependencies = [ "bincode 1.0.0-alpha2 (registry+https://github.com/rust-lang/crates.io-index)", "fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1264,6 +1264,12 @@ dependencies = [ "uuid 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ipc-channel" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +replace = "ipc-channel 0.7.0 (git+https://github.com/danlrobertson/ipc-channel?rev=shmem)" + [[package]] name = "itoa" version = "0.3.1" @@ -3472,6 +3478,7 @@ dependencies = [ "checksum immeta 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "3e76ecb1d64979a91c7fc5b7c0495ef1467e3cbff759044f2b88878a5a845ef7" "checksum inflate 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e7e0062d2dc2f17d2f13750d95316ae8a2ff909af0fda957084f5defd87c43bb" "checksum io-surface 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "10d25285115b9d34be1328fdc5af15d34174472a9f23d1994d2d14a7ec8c537a" +"checksum ipc-channel 0.7.0 (git+https://github.com/danlrobertson/ipc-channel?rev=shmem)" = "" "checksum ipc-channel 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc12beb3f43e226410d7f26a77aec73efbf0c11875a8131adc09f30a8219f22e" "checksum itoa 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eb2f404fbc66fd9aac13e998248505e7ecb2ad8e44ab6388684c5fb11c6c251c" "checksum jpeg-decoder 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "5c4ff3d14e7ef3522471ab712832c3dd50001f7fb7aa4cdc48af811d63b531e9" diff --git a/Cargo.toml b/Cargo.toml index a6862731aea7..756868bdda85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,3 +14,7 @@ opt-level = 3 # Uncomment to profile on Linux: # debug = true # lto = false + +[replace."ipc-channel:0.7.0"] +git = "https://github.com/danlrobertson/ipc-channel" +rev = "shmem"