Bug 1527553 - Update the mozilla-central workspace hack. r=firefox-build-system-reviewers,mshal

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Chris Manchester 2019-02-26 19:37:49 +00:00
parent 93801b3a02
commit c7f1151b94
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -1318,7 +1318,6 @@ name = "jsrust"
version = "0.1.0"
dependencies = [
"jsrust_shared 0.1.0",
"mozilla-central-workspace-hack 0.1.0",
]
[[package]]
@ -1326,6 +1325,7 @@ name = "jsrust_shared"
version = "0.1.0"
dependencies = [
"baldrdash 0.1.0",
"mozilla-central-workspace-hack 0.1.0",
]
[[package]]
@ -1671,7 +1671,7 @@ dependencies = [
"quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.80 (git+https://github.com/servo/serde?branch=deserialize_from_enums9)",
"syn 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.15.24 (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.6 (git+https://github.com/froydnj/winapi-rs?branch=aarch64)",
]

View File

@ -15,8 +15,8 @@ version = "0.1.0"
[build-dependencies]
void = { features = ["std", "default"], version = "1.0.2" }
syn = { features = ["extra-traits", "fold", "full"], version = "0.14" }
log = { features = ["release_max_level_info", "release_max_level_warn", "std"], version = "0.4.5" }
syn = { features = ["clone-impls", "default", "derive", "extra-traits", "full", "parsing", "printing", "proc-macro", "quote", "visit"], version = "0.15" }
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_derive = { features = ["default", "deserialize_in_place"], version = "1.0.66" }
quote = { features = ["default", "proc-macro"], version = "0.5.2" }

View File

@ -10,4 +10,3 @@ path = "lib.rs"
[dependencies]
jsrust_shared = { path = "./shared" }
mozilla-central-workspace-hack = { path = "../../../build/workspace-hack" }

View File

@ -10,6 +10,7 @@ path = "lib.rs"
[dependencies]
baldrdash = { path = "../../wasm/cranelift" }
mozilla-central-workspace-hack = { path = "../../../../build/workspace-hack" }
# Uncomment this to enable perf support in release mode.
#[profile.release]