mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Upgrade to rustc 1.3.0-dev (87055a68c 2015-07-30)
This commit is contained in:
parent
a3c0366bd6
commit
930921b0c3
7 changed files with 170 additions and 77 deletions
|
@ -22,7 +22,7 @@ impl LintPass for StrToStringPass {
|
||||||
fn check_expr(&mut self, cx: &Context, expr: &ast::Expr) {
|
fn check_expr(&mut self, cx: &Context, expr: &ast::Expr) {
|
||||||
match expr.node {
|
match expr.node {
|
||||||
ast::ExprMethodCall(ref method, _, ref args)
|
ast::ExprMethodCall(ref method, _, ref args)
|
||||||
if method.node.as_str() == "to_string"
|
if method.node.name.as_str() == "to_string"
|
||||||
&& is_str(cx, &*args[0]) => {
|
&& is_str(cx, &*args[0]) => {
|
||||||
cx.span_lint(STR_TO_STRING, expr.span,
|
cx.span_lint(STR_TO_STRING, expr.span,
|
||||||
"str.to_owned() is more efficient than str.to_string(), please use it instead");
|
"str.to_owned() is more efficient than str.to_string(), please use it instead");
|
||||||
|
|
|
@ -121,9 +121,9 @@ impl LintPass for UnrootedPass {
|
||||||
block: &ast::Block, _span: codemap::Span, id: ast::NodeId) {
|
block: &ast::Block, _span: codemap::Span, id: ast::NodeId) {
|
||||||
match kind {
|
match kind {
|
||||||
visit::FkItemFn(i, _, _, _, _, _) |
|
visit::FkItemFn(i, _, _, _, _, _) |
|
||||||
visit::FkMethod(i, _, _) if i.as_str() == "new"
|
visit::FkMethod(i, _, _) if i.name.as_str() == "new"
|
||||||
|| i.as_str() == "new_inherited"
|
|| i.name.as_str() == "new_inherited"
|
||||||
|| i.as_str() == "new_initialized" => {
|
|| i.name.as_str() == "new_initialized" => {
|
||||||
self.in_new_function = true;
|
self.in_new_function = true;
|
||||||
return;
|
return;
|
||||||
},
|
},
|
||||||
|
|
|
@ -22,7 +22,7 @@ pub fn match_ty_unwrap<'a>(ty: &'a Ty, segments: &[&str]) -> Option<&'a [P<Ty>]>
|
||||||
// I could muck around with the maps and find the full path
|
// I could muck around with the maps and find the full path
|
||||||
// however the more efficient way is to simply reverse the iterators and zip them
|
// however the more efficient way is to simply reverse the iterators and zip them
|
||||||
// which will compare them in reverse until one of them runs out of segments
|
// which will compare them in reverse until one of them runs out of segments
|
||||||
if seg.iter().rev().zip(segments.iter().rev()).all(|(a,b)| a.identifier.as_str() == *b) {
|
if seg.iter().rev().zip(segments.iter().rev()).all(|(a,b)| a.identifier.name.as_str() == *b) {
|
||||||
match seg.last() {
|
match seg.last() {
|
||||||
Some(&PathSegment {parameters: AngleBracketedParameters(ref a), ..}) => {
|
Some(&PathSegment {parameters: AngleBracketedParameters(ref a), ..}) => {
|
||||||
Some(&a.types)
|
Some(&a.types)
|
||||||
|
|
81
components/servo/Cargo.lock
generated
81
components/servo/Cargo.lock
generated
|
@ -49,7 +49,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aster"
|
name = "aster"
|
||||||
version = "0.3.3"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -234,6 +234,14 @@ name = "debug-builders"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "debug_unreachable"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"unreachable 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "devtools"
|
name = "devtools"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@ -449,7 +457,7 @@ dependencies = [
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -581,8 +589,8 @@ dependencies = [
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -726,8 +734,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -980,6 +988,15 @@ dependencies = [
|
||||||
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "phf_codegen"
|
||||||
|
version = "0.7.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"phf_generator 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "phf_generator"
|
name = "phf_generator"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
|
@ -1071,7 +1088,7 @@ name = "quasi_codegen"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1154,8 +1171,8 @@ dependencies = [
|
||||||
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1202,8 +1219,8 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1219,7 +1236,7 @@ name = "serde_codegen"
|
||||||
version = "0.4.2"
|
version = "0.4.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -1282,32 +1299,33 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache"
|
name = "string_cache"
|
||||||
version = "0.1.6"
|
version = "0.1.9"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_plugin"
|
name = "string_cache_plugin"
|
||||||
version = "0.1.4"
|
version = "0.1.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_shared"
|
name = "string_cache_shared"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"debug_unreachable 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_codegen 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "style"
|
name = "style"
|
||||||
|
@ -1328,8 +1346,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"util 0.0.1",
|
"util 0.0.1",
|
||||||
]
|
]
|
||||||
|
@ -1341,8 +1359,8 @@ dependencies = [
|
||||||
"cssparser 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cssparser 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"euclid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"euclid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"util 0.0.1",
|
"util 0.0.1",
|
||||||
|
@ -1410,6 +1428,14 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unreachable"
|
||||||
|
version = "0.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"void 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "url"
|
name = "url"
|
||||||
version = "0.2.36"
|
version = "0.2.36"
|
||||||
|
@ -1471,6 +1497,11 @@ dependencies = [
|
||||||
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "void"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "webdriver"
|
name = "webdriver"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
77
ports/cef/Cargo.lock
generated
77
ports/cef/Cargo.lock
generated
|
@ -48,7 +48,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aster"
|
name = "aster"
|
||||||
version = "0.3.3"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -233,6 +233,14 @@ name = "debug-builders"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "debug_unreachable"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"unreachable 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "devtools"
|
name = "devtools"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@ -448,7 +456,7 @@ dependencies = [
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -573,8 +581,8 @@ dependencies = [
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -718,8 +726,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -959,6 +967,15 @@ dependencies = [
|
||||||
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "phf_codegen"
|
||||||
|
version = "0.7.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"phf_generator 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "phf_generator"
|
name = "phf_generator"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
|
@ -1050,7 +1067,7 @@ name = "quasi_codegen"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1133,8 +1150,8 @@ dependencies = [
|
||||||
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1173,8 +1190,8 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1190,7 +1207,7 @@ name = "serde_codegen"
|
||||||
version = "0.4.2"
|
version = "0.4.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -1279,32 +1296,33 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache"
|
name = "string_cache"
|
||||||
version = "0.1.6"
|
version = "0.1.9"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_plugin"
|
name = "string_cache_plugin"
|
||||||
version = "0.1.4"
|
version = "0.1.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_shared"
|
name = "string_cache_shared"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"debug_unreachable 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_codegen 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "style"
|
name = "style"
|
||||||
|
@ -1325,8 +1343,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"util 0.0.1",
|
"util 0.0.1",
|
||||||
]
|
]
|
||||||
|
@ -1393,6 +1411,14 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unreachable"
|
||||||
|
version = "0.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"void 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "url"
|
name = "url"
|
||||||
version = "0.2.36"
|
version = "0.2.36"
|
||||||
|
@ -1444,6 +1470,11 @@ dependencies = [
|
||||||
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "void"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "webdriver"
|
name = "webdriver"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
77
ports/gonk/Cargo.lock
generated
77
ports/gonk/Cargo.lock
generated
|
@ -35,7 +35,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "aster"
|
name = "aster"
|
||||||
version = "0.3.3"
|
version = "0.4.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -210,6 +210,14 @@ name = "debug-builders"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "debug_unreachable"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"unreachable 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "devtools"
|
name = "devtools"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@ -427,7 +435,7 @@ dependencies = [
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
"skia 0.0.20130412 (git+https://github.com/servo/skia)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -507,8 +515,8 @@ dependencies = [
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -652,8 +660,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"unicode-bidi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -867,6 +875,15 @@ dependencies = [
|
||||||
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "phf_codegen"
|
||||||
|
version = "0.7.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"phf_generator 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_shared 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "phf_generator"
|
name = "phf_generator"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
|
@ -958,7 +975,7 @@ name = "quasi_codegen"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1041,8 +1058,8 @@ dependencies = [
|
||||||
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
"selectors 0.1.0 (git+https://github.com/servo/rust-selectors)",
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"style 0.0.1",
|
"style 0.0.1",
|
||||||
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"tendril 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -1081,8 +1098,8 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quicksort 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1098,7 +1115,7 @@ name = "serde_codegen"
|
||||||
version = "0.4.2"
|
version = "0.4.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aster 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aster 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"quasi_macros 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -1177,32 +1194,33 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache"
|
name = "string_cache"
|
||||||
version = "0.1.6"
|
version = "0.1.9"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"phf_macros 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_plugin"
|
name = "string_cache_plugin"
|
||||||
version = "0.1.4"
|
version = "0.1.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"mac 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_shared 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_shared 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_cache_shared"
|
name = "string_cache_shared"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"debug_unreachable 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
"phf_codegen 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "style"
|
name = "style"
|
||||||
|
@ -1223,8 +1241,8 @@ dependencies = [
|
||||||
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_macros 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"smallvec 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"string_cache_plugin 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"string_cache_plugin 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
"url 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"util 0.0.1",
|
"util 0.0.1",
|
||||||
]
|
]
|
||||||
|
@ -1291,6 +1309,14 @@ dependencies = [
|
||||||
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unreachable"
|
||||||
|
version = "0.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"void 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "url"
|
name = "url"
|
||||||
version = "0.2.36"
|
version = "0.2.36"
|
||||||
|
@ -1333,6 +1359,11 @@ dependencies = [
|
||||||
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "void"
|
||||||
|
version = "0.0.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "webdriver"
|
name = "webdriver"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
e4e93196e16030ebf7a20c473849534235d676f8/rustc-1.3.0-dev
|
87055a68c3194db212456f99ece080728a5fc2f8/rustc-1.3.0-dev
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue