mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 07:01:19 +00:00
Backed out changeset bde27b38c9c5 (bug 1643201) for causing Valgrind failures and build bustages
This commit is contained in:
parent
e01be58994
commit
fc6456ef88
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -4246,6 +4246,7 @@ dependencies = [
|
||||
"derive_more",
|
||||
"fxhash",
|
||||
"log",
|
||||
"matches",
|
||||
"phf",
|
||||
"phf_codegen",
|
||||
"precomputed-hash",
|
||||
@ -4581,6 +4582,7 @@ dependencies = [
|
||||
"log",
|
||||
"malloc_size_of",
|
||||
"malloc_size_of_derive",
|
||||
"matches",
|
||||
"new_debug_unreachable",
|
||||
"nsstring",
|
||||
"num-derive",
|
||||
|
@ -19,6 +19,7 @@ bench = []
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1.0"
|
||||
matches = "0.1"
|
||||
cssparser = "0.27"
|
||||
derive_more = "0.99"
|
||||
fxhash = "0.2"
|
||||
|
@ -14,6 +14,8 @@ extern crate derive_more;
|
||||
extern crate fxhash;
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
#[macro_use]
|
||||
extern crate matches;
|
||||
extern crate phf;
|
||||
extern crate precomputed_hash;
|
||||
extern crate servo_arc;
|
||||
|
@ -48,6 +48,7 @@ lazy_static = "1"
|
||||
log = "0.4"
|
||||
malloc_size_of = { path = "../malloc_size_of" }
|
||||
malloc_size_of_derive = "0.1"
|
||||
matches = "0.1"
|
||||
nsstring = {path = "../../../xpcom/rust/nsstring/", optional = true}
|
||||
num_cpus = {version = "1.1.0"}
|
||||
num-integer = "0.1"
|
||||
|
@ -59,6 +59,9 @@ extern crate log;
|
||||
extern crate malloc_size_of;
|
||||
#[macro_use]
|
||||
extern crate malloc_size_of_derive;
|
||||
#[allow(unused_extern_crates)]
|
||||
#[macro_use]
|
||||
extern crate matches;
|
||||
#[cfg(feature = "gecko")]
|
||||
pub extern crate nsstring;
|
||||
#[cfg(feature = "gecko")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user