Bug 1601150 - Update cargo workspace hack. r=chmanchester

Bug 1601233 made cranelift bump its syn dependency to 1.0, breaking the
workspace hack. Some of the features were also stale from presumably
other updates.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2019-12-05 04:32:15 +00:00
parent 6fc977baf1
commit 7f061cc7b1
2 changed files with 7 additions and 5 deletions

5
Cargo.lock generated
View File

@ -2232,13 +2232,14 @@ dependencies = [
name = "mozilla-central-workspace-hack"
version = "0.1.0"
dependencies = [
"libc 0.2.59 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.15.30 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
"void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -15,13 +15,14 @@ version = "0.1.0"
[build-dependencies]
void = { features = ["std", "default"], version = "1.0.2" }
syn = { features = ["clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit"], version = "0.15" }
syn = { features = ["clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit"], version = "1.0" }
log = { features = ["release_max_level_info", "release_max_level_warn", "std"], version = "0.4.6" }
serde = { features = ["default", "rc", "serde_derive", "std"], version = "1.0.66" }
serde = { features = ["default", "derive", "rc", "serde_derive", "std"], version = "1.0.66" }
serde_derive = { features = ["default", "deserialize_in_place"], version = "1.0.66" }
smallvec = { features = ["default", "serde", "std"], version = "0.6.10" }
quote = { features = ["default", "proc-macro"], version = "0.6.11" }
quote = { features = ["default", "proc-macro"], version = "1.0" }
proc-macro2 = { features = ["default", "proc-macro"], version = "0.4.27" }
libc = { features = ["default", "std", "use_std"], version = "0.2" }
[target."cfg(windows)".dependencies.winapi]
version = "0.3.6"