Bug 1587468 - Update uuid to 0.8.1. r=webdriver-reviewers,whimboo,emilio

This leaves one out-of-tree of uuid 0.7, handled by https://github.com/mozilla/rkv/pull/184
(but we have two copies of that, we'd need to have it landed on both
branches and pulled).

Differential Revision: https://phabricator.services.mozilla.com/D55912

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2019-12-06 00:47:50 +00:00
parent b28df3b531
commit 6a1d6c2698
6 changed files with 13 additions and 13 deletions

16
Cargo.lock generated
View File

@ -1249,7 +1249,7 @@ dependencies = [
"serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_yaml 0.8.9 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"webdriver 0.40.2",
"zip 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -1482,7 +1482,7 @@ name = "gkrust_utils"
version = "0.1.0"
dependencies = [
"nsstring 0.1.0",
"uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -2034,7 +2034,7 @@ dependencies = [
"dns-parser 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"socket2 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -2259,7 +2259,7 @@ dependencies = [
"nserror 0.1.0",
"nsstring 0.1.0",
"url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"xpcom 0.1.0",
]
@ -4243,14 +4243,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "uuid"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "uuid"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vcpkg"
@ -4416,7 +4416,7 @@ dependencies = [
"num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"thread_profiler 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"webrender 0.60.0",
]

View File

@ -17,7 +17,7 @@ gleam = "0.6.14"
log = "0.4"
nsstring = { path = "../../xpcom/rust/nsstring" }
bincode = "1.0"
uuid = { version = "0.7", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }
fxhash = "0.2.1"
[dependencies.webrender]

View File

@ -9,4 +9,4 @@ byteorder = "1.3.1"
dns-parser = "0.8.0"
log = "0.4"
socket2 = { version = "0.3.9", features = ["reuseport"] }
uuid = { version = "0.7", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }

View File

@ -8,4 +8,4 @@ url = "2.0"
nserror = { path = "../../../xpcom/rust/nserror" }
nsstring = { path = "../../../xpcom/rust/nsstring" }
xpcom = { path = "../../../xpcom/rust/xpcom" }
uuid = { version = "0.7.2", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }

View File

@ -25,7 +25,7 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
uuid = { version = "0.7", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }
webdriver = { path = "../webdriver" }
zip = { version = "0.4", default-features = false, features = ["deflate"] }

View File

@ -4,5 +4,5 @@ version = "0.1.0"
authors = ["Jonathan Kingston <jkt@mozilla.com>"]
[dependencies]
uuid = { version = "0.7", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }
nsstring = { path = "../nsstring" }