Bump ipc-channel and bincode

This required bumping uuid too which unfortunately duplicated rand.
This commit is contained in:
Bastien Orivel 2018-03-21 13:04:41 +01:00
parent 5b575e3647
commit 570d865065
34 changed files with 152 additions and 107 deletions

View file

@ -51,7 +51,7 @@ html5ever = "0.22"
hyper = "0.10"
hyper_serde = "0.8"
image = "0.18"
ipc-channel = "0.9"
ipc-channel = "0.10"
jstraceable_derive = {path = "../jstraceable_derive"}
lazy_static = "1"
libc = "0.2"
@ -93,7 +93,7 @@ time = "0.1.12"
unicode-segmentation = "1.1.0"
url = "1.6"
utf-8 = "0.7"
uuid = {version = "0.5", features = ["v4"]}
uuid = {version = "0.6", features = ["v4"]}
xml5ever = {version = "0.12"}
webrender_api = {git = "https://github.com/servo/webrender", features = ["ipc"]}
webvr_traits = {path = "../webvr_traits"}

View file

@ -154,7 +154,7 @@ malloc_size_of_is_0!(WorkletId);
impl WorkletId {
fn new() -> WorkletId {
WorkletId(servo_rand::random())
WorkletId(servo_rand::random_uuid())
}
}