diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2015-11-25 07:31:15 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2015-11-25 07:31:15 +0530 |
commit | 13a96fcaf78c299beb2021d3ae9dae8d9e916762 (patch) | |
tree | 8e8078b6c698b30868fde6d6930c033281f22402 | |
parent | 6f35b867c9c3bb7a345e2ac34e5970b93a1d3ea1 (diff) | |
parent | 2843000810ca1fcb11eb19ede5d895ad3e3e185a (diff) | |
download | servo-13a96fcaf78c299beb2021d3ae9dae8d9e916762.tar.gz servo-13a96fcaf78c299beb2021d3ae9dae8d9e916762.zip |
Auto merge of #8660 - pcwalton:ipc-channel-errors, r=larsbergstrom
Update `ipc-channel` to pick up the improved error reporting.
Intended to help diagnose intermittent failures.
r? @jdm or @larsbergstrom (or whoever)
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8660)
<!-- Reviewable:end -->
-rw-r--r-- | components/canvas/Cargo.toml | 2 | ||||
-rw-r--r-- | components/canvas_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/compositing/Cargo.toml | 2 | ||||
-rw-r--r-- | components/devtools/Cargo.toml | 2 | ||||
-rw-r--r-- | components/devtools_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/gfx/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout/Cargo.toml | 2 | ||||
-rw-r--r-- | components/layout_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/msg/Cargo.toml | 2 | ||||
-rw-r--r-- | components/net/Cargo.toml | 2 | ||||
-rw-r--r-- | components/net_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/profile/Cargo.toml | 2 | ||||
-rw-r--r-- | components/profile_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script_traits/Cargo.toml | 2 | ||||
-rw-r--r-- | components/servo/Cargo.lock | 41 | ||||
-rw-r--r-- | components/servo/Cargo.toml | 2 | ||||
-rw-r--r-- | components/util/Cargo.toml | 2 | ||||
-rw-r--r-- | components/util/ipc.rs | 7 | ||||
-rw-r--r-- | components/webdriver_server/Cargo.toml | 2 | ||||
-rw-r--r-- | ports/cef/Cargo.lock | 39 | ||||
-rw-r--r-- | ports/gonk/Cargo.lock | 37 | ||||
-rw-r--r-- | tests/unit/net/Cargo.toml | 2 |
23 files changed, 84 insertions, 78 deletions
diff --git a/components/canvas/Cargo.toml b/components/canvas/Cargo.toml index e3300568270..48999b5923f 100644 --- a/components/canvas/Cargo.toml +++ b/components/canvas/Cargo.toml @@ -32,7 +32,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context" features = ["texture_surface"] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies] cssparser = { version = "0.4", features = [ "serde-serialization" ] } diff --git a/components/canvas_traits/Cargo.toml b/components/canvas_traits/Cargo.toml index ec49ede4d32..f46adfba765 100644 --- a/components/canvas_traits/Cargo.toml +++ b/components/canvas_traits/Cargo.toml @@ -22,7 +22,7 @@ features = ["plugins"] git = "https://github.com/ecoal95/rust-offscreen-rendering-context" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.serde] version = "0.6" diff --git a/components/compositing/Cargo.toml b/components/compositing/Cargo.toml index ce452ad8b7d..ed02566e22f 100644 --- a/components/compositing/Cargo.toml +++ b/components/compositing/Cargo.toml @@ -58,7 +58,7 @@ features = ["plugins"] git = "https://github.com/aweinstock314/rust-clipboard" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.offscreen_gl_context] git = "https://github.com/ecoal95/rust-offscreen-rendering-context" diff --git a/components/devtools/Cargo.toml b/components/devtools/Cargo.toml index ffff267e735..133b4351589 100644 --- a/components/devtools/Cargo.toml +++ b/components/devtools/Cargo.toml @@ -24,7 +24,7 @@ path = "../util" path = "../plugins" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/devtools_traits/Cargo.toml b/components/devtools_traits/Cargo.toml index bf2ea4b204b..7efc73e8524 100644 --- a/components/devtools_traits/Cargo.toml +++ b/components/devtools_traits/Cargo.toml @@ -22,7 +22,7 @@ version = "0.2" features = [ "serde_serialization" ] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.plugins] path = "../plugins" diff --git a/components/gfx/Cargo.toml b/components/gfx/Cargo.toml index bc5c98a8cd3..6c8c8c356bc 100644 --- a/components/gfx/Cargo.toml +++ b/components/gfx/Cargo.toml @@ -65,7 +65,7 @@ git = "https://github.com/servo/skia" path = "../script_traits" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml index 8697897c7b5..8e5d8cd7a34 100644 --- a/components/layout/Cargo.toml +++ b/components/layout/Cargo.toml @@ -54,7 +54,7 @@ path = "../util" git = "https://github.com/tomaka/clock_ticks" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/layout_traits/Cargo.toml b/components/layout_traits/Cargo.toml index 8295addcc35..e5176785e85 100644 --- a/components/layout_traits/Cargo.toml +++ b/components/layout_traits/Cargo.toml @@ -26,7 +26,7 @@ path = "../profile_traits" path = "../util" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/msg/Cargo.toml b/components/msg/Cargo.toml index 8412163ff4c..1d22df47fcf 100644 --- a/components/msg/Cargo.toml +++ b/components/msg/Cargo.toml @@ -33,7 +33,7 @@ version = "0.2.36" features = [ "serde_serialization" ] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.offscreen_gl_context] git = "https://github.com/ecoal95/rust-offscreen-rendering-context" diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 3c88b61626e..d1ee383a23a 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -30,7 +30,7 @@ features = [ "serde-serialization" ] path = "../msg" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/net_traits/Cargo.toml b/components/net_traits/Cargo.toml index 1cbf7313a65..161fa57f862 100644 --- a/components/net_traits/Cargo.toml +++ b/components/net_traits/Cargo.toml @@ -21,7 +21,7 @@ version = "0.6" features = [ "serde-serialization" ] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/profile/Cargo.toml b/components/profile/Cargo.toml index 6d5d632ddbd..570b929a3b3 100644 --- a/components/profile/Cargo.toml +++ b/components/profile/Cargo.toml @@ -20,7 +20,7 @@ path = "../util" git = "https://github.com/libheartbeats/heartbeats-simple-rust.git" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies] log = "0.3" diff --git a/components/profile_traits/Cargo.toml b/components/profile_traits/Cargo.toml index e8704ef4757..a172d680dbb 100644 --- a/components/profile_traits/Cargo.toml +++ b/components/profile_traits/Cargo.toml @@ -11,7 +11,7 @@ path = "lib.rs" energy-profiling = ["energymon", "energy-monitor"] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.energymon] git = "https://github.com/energymon/energymon-rust.git" diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 34043b52a75..fb9db462f6c 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -57,7 +57,7 @@ git = "https://github.com/ecoal95/angle" branch = "servo" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.hyper] version = "0.6" diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 357335bcf17..d115787d360 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -26,7 +26,7 @@ path = "../util" path = "../devtools_traits" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index 80bf3d0e9c2..612845f30b2 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -17,7 +17,7 @@ dependencies = [ "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -159,7 +159,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -176,7 +176,7 @@ dependencies = [ "cssparser 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -269,7 +269,7 @@ dependencies = [ "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -357,7 +357,7 @@ version = "0.0.1" dependencies = [ "devtools_traits 0.0.1", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -375,7 +375,7 @@ version = "0.0.1" dependencies = [ "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -656,7 +656,7 @@ dependencies = [ "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "gfx_traits 0.0.1", "harfbuzz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -940,7 +940,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.1.0" -source = "git+https://github.com/pcwalton/ipc-channel#5e71fe6a1831e61e01ec8580bd3c3280b25d6054" +source = "git+https://github.com/servo/ipc-channel#a7da16d710cfbb5d05c8315a5fbc04dd58399887" dependencies = [ "bincode 0.4.0 (git+https://github.com/TyOverby/bincode)", "byteorder 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -949,6 +949,7 @@ dependencies = [ "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1019,7 +1020,7 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1050,7 +1051,7 @@ version = "0.0.1" dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net_traits 0.0.1", "profile_traits 0.0.1", @@ -1183,7 +1184,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "io-surface 0.1.1 (git+https://github.com/servo/io-surface-rs)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -1205,7 +1206,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", @@ -1227,7 +1228,7 @@ dependencies = [ "devtools_traits 0.0.1", "flate2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net 0.0.1", "net_traits 0.0.1", @@ -1244,7 +1245,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -1435,7 +1436,7 @@ name = "profile" version = "0.0.1" dependencies = [ "hbs-pow 0.1.0 (git+https://github.com/libheartbeats/heartbeats-simple-rust.git)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1452,7 +1453,7 @@ version = "0.0.1" dependencies = [ "energy-monitor 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "energymon 0.1.0 (git+https://github.com/energymon/energymon-rust.git?rev=eba1d8a)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1542,7 +1543,7 @@ dependencies = [ "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1587,7 +1588,7 @@ dependencies = [ "app_units 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", @@ -1933,7 +1934,7 @@ dependencies = [ "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2029,7 +2030,7 @@ version = "0.0.1" dependencies = [ "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 5d2222b8aa1..2b1fda73a1f 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -136,7 +136,7 @@ features = ["plugins"] git = "https://github.com/pcwalton/gaol" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.layers] git = "https://github.com/servo/rust-layers" diff --git a/components/util/Cargo.toml b/components/util/Cargo.toml index bdbb7ec3443..5a5399b444b 100644 --- a/components/util/Cargo.toml +++ b/components/util/Cargo.toml @@ -30,7 +30,7 @@ git = "https://github.com/servo/rust-layers" features = ["plugins"] [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/components/util/ipc.rs b/components/util/ipc.rs index be0196abdaf..e6f81d55940 100644 --- a/components/util/ipc.rs +++ b/components/util/ipc.rs @@ -8,6 +8,7 @@ use opts; use serde::{Deserialize, Deserializer, Serialize, Serializer}; use std::any::{Any, TypeId}; use std::collections::HashMap; +use std::io::{Error, ErrorKind}; use std::marker::Reflect; use std::mem; use std::sync::Mutex; @@ -27,10 +28,12 @@ pub enum OptionalIpcSender<T> where T: Deserialize + Serialize + Send + Any { } impl<T> OptionalIpcSender<T> where T: Deserialize + Serialize + Send + Any { - pub fn send(&self, value: T) -> Result<(), ()> { + pub fn send(&self, value: T) -> Result<(), Error> { match *self { OptionalIpcSender::OutOfProcess(ref ipc_sender) => ipc_sender.send(value), - OptionalIpcSender::InProcess(ref sender) => sender.send(value).map_err(|_| ()), + OptionalIpcSender::InProcess(ref sender) => { + sender.send(value).map_err(|_| Error::new(ErrorKind::Other, "MPSC send failed")) + } } } diff --git a/components/webdriver_server/Cargo.toml b/components/webdriver_server/Cargo.toml index 129859bd222..d0bbcb2327e 100644 --- a/components/webdriver_server/Cargo.toml +++ b/components/webdriver_server/Cargo.toml @@ -20,7 +20,7 @@ path = "../util" git = "https://github.com/jgraham/webdriver-rust.git" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies.url] version = "0.2" diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index e71bd53f022..186762d27de 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -148,7 +148,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -165,7 +165,7 @@ dependencies = [ "cssparser 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -258,7 +258,7 @@ dependencies = [ "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -346,7 +346,7 @@ version = "0.0.1" dependencies = [ "devtools_traits 0.0.1", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -364,7 +364,7 @@ version = "0.0.1" dependencies = [ "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -612,7 +612,7 @@ dependencies = [ "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "gfx_traits 0.0.1", "harfbuzz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -889,7 +889,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.1.0" -source = "git+https://github.com/pcwalton/ipc-channel#5e71fe6a1831e61e01ec8580bd3c3280b25d6054" +source = "git+https://github.com/servo/ipc-channel#a7da16d710cfbb5d05c8315a5fbc04dd58399887" dependencies = [ "bincode 0.4.0 (git+https://github.com/TyOverby/bincode)", "byteorder 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -898,6 +898,7 @@ dependencies = [ "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -968,7 +969,7 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -999,7 +1000,7 @@ version = "0.0.1" dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net_traits 0.0.1", "profile_traits 0.0.1", @@ -1132,7 +1133,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "io-surface 0.1.1 (git+https://github.com/servo/io-surface-rs)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -1154,7 +1155,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", @@ -1175,7 +1176,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -1351,7 +1352,7 @@ name = "profile" version = "0.0.1" dependencies = [ "hbs-pow 0.1.0 (git+https://github.com/libheartbeats/heartbeats-simple-rust.git)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1366,7 +1367,7 @@ dependencies = [ name = "profile_traits" version = "0.0.1" dependencies = [ - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1456,7 +1457,7 @@ dependencies = [ "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1492,7 +1493,7 @@ dependencies = [ "app_units 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", @@ -1571,7 +1572,7 @@ dependencies = [ "gfx 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_app 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1857,7 +1858,7 @@ dependencies = [ "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1942,7 +1943,7 @@ version = "0.0.1" dependencies = [ "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index c4c3a09a82b..99ba20db4cc 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -140,7 +140,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", @@ -157,7 +157,7 @@ dependencies = [ "cssparser 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -250,7 +250,7 @@ dependencies = [ "gfx_traits 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -338,7 +338,7 @@ version = "0.0.1" dependencies = [ "devtools_traits 0.0.1", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -356,7 +356,7 @@ version = "0.0.1" dependencies = [ "bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", @@ -614,7 +614,7 @@ dependencies = [ "freetype 0.1.0 (git+https://github.com/servo/rust-freetype)", "gfx_traits 0.0.1", "harfbuzz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "ipc-channel" version = "0.1.0" -source = "git+https://github.com/pcwalton/ipc-channel#5e71fe6a1831e61e01ec8580bd3c3280b25d6054" +source = "git+https://github.com/servo/ipc-channel#a7da16d710cfbb5d05c8315a5fbc04dd58399887" dependencies = [ "bincode 0.4.0 (git+https://github.com/TyOverby/bincode)", "byteorder 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -878,6 +878,7 @@ dependencies = [ "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -948,7 +949,7 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", "gfx_traits 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layout_traits 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -979,7 +980,7 @@ version = "0.0.1" dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gfx 0.0.1", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "msg 0.0.1", "net_traits 0.0.1", "profile_traits 0.0.1", @@ -1112,7 +1113,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "io-surface 0.1.1 (git+https://github.com/servo/io-surface-rs)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "offscreen_gl_context 0.1.0 (git+https://github.com/ecoal95/rust-offscreen-rendering-context)", "plugins 0.0.1", @@ -1134,7 +1135,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", @@ -1155,7 +1156,7 @@ dependencies = [ "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "plugins 0.0.1", @@ -1331,7 +1332,7 @@ name = "profile" version = "0.0.1" dependencies = [ "hbs-pow 0.1.0 (git+https://github.com/libheartbeats/heartbeats-simple-rust.git)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1346,7 +1347,7 @@ dependencies = [ name = "profile_traits" version = "0.0.1" dependencies = [ - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "plugins 0.0.1", "serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1436,7 +1437,7 @@ dependencies = [ "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1472,7 +1473,7 @@ dependencies = [ "app_units 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "devtools_traits 0.0.1", "euclid 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", @@ -1550,7 +1551,7 @@ dependencies = [ "gaol 0.0.1 (git+https://github.com/pcwalton/gaol)", "gfx 0.0.1", "gleam 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "layout 0.0.1", "libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1835,7 +1836,7 @@ dependencies = [ "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "html5ever 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.6.15 (registry+https://github.com/rust-lang/crates.io-index)", - "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", + "ipc-channel 0.1.0 (git+https://github.com/servo/ipc-channel)", "js 0.1.1 (git+https://github.com/servo/rust-mozjs)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/tests/unit/net/Cargo.toml b/tests/unit/net/Cargo.toml index 87bd03c1fa6..39abd0ee00b 100644 --- a/tests/unit/net/Cargo.toml +++ b/tests/unit/net/Cargo.toml @@ -27,7 +27,7 @@ path = "../../../components/plugins" path = "../../../components/devtools_traits" [dependencies.ipc-channel] -git = "https://github.com/pcwalton/ipc-channel" +git = "https://github.com/servo/ipc-channel" [dependencies] cookie = "0.1" |