diff --git a/servo/components/plugins/jstraceable.rs b/servo/components/plugins/jstraceable.rs index d0b55d65140a..3ace7dbbf168 100644 --- a/servo/components/plugins/jstraceable.rs +++ b/servo/components/plugins/jstraceable.rs @@ -34,7 +34,7 @@ pub fn expand_dom_struct(cx: &mut ExtCtxt, sp: Span, _: &MetaItem, anno: Annotat /// /// The expansion basically calls `trace()` on all of the fields of the struct/enum, erroring if they do not /// implement the method. -pub fn expand_jstraceable(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: Annotatable, +pub fn expand_jstraceable(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: &Annotatable, push: &mut FnMut(Annotatable)) { let trait_def = TraitDef { span: span, @@ -57,7 +57,7 @@ pub fn expand_jstraceable(cx: &mut ExtCtxt, span: Span, mitem: &MetaItem, item: ], associated_types: vec![], }; - trait_def.expand(cx, mitem, &item, push) + trait_def.expand(cx, mitem, item, push) } // Mostly copied from syntax::ext::deriving::hash diff --git a/servo/components/plugins/lints/unrooted_must_root.rs b/servo/components/plugins/lints/unrooted_must_root.rs index 927d60df5a00..09650dce1905 100644 --- a/servo/components/plugins/lints/unrooted_must_root.rs +++ b/servo/components/plugins/lints/unrooted_must_root.rs @@ -91,11 +91,11 @@ impl LintPass for UnrootedPass { fn check_fn(&mut self, cx: &Context, kind: visit::FnKind, decl: &ast::FnDecl, block: &ast::Block, _span: codemap::Span, id: ast::NodeId) { match kind { - visit::FkItemFn(i, _, _, _, _) | + visit::FkItemFn(i, _, _, _, _, _) | visit::FkMethod(i, _, _) if i.as_str() == "new" || i.as_str() == "new_inherited" => { return; }, - visit::FkItemFn(_, _, style, _, _) => match style { + visit::FkItemFn(_, _, style, _, _, _) => match style { ast::Unsafety::Unsafe => return, _ => () }, diff --git a/servo/components/plugins/reflector.rs b/servo/components/plugins/reflector.rs index f9df9b22c206..68a6011e7d43 100644 --- a/servo/components/plugins/reflector.rs +++ b/servo/components/plugins/reflector.rs @@ -9,9 +9,9 @@ use syntax::ast; use utils::match_ty_unwrap; -pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, annotatable: Annotatable, +pub fn expand_reflector(cx: &mut ExtCtxt, span: Span, _: &MetaItem, annotatable: &Annotatable, push: &mut FnMut(Annotatable)) { - if let Annotatable::Item(item) = annotatable { + if let &Annotatable::Item(ref item) = annotatable { if let ast::ItemStruct(ref def, _) = item.node { let struct_name = item.ident; // This path has to be hardcoded, unfortunately, since we can't resolve paths at expansion time diff --git a/servo/components/plugins/utils.rs b/servo/components/plugins/utils.rs index 562ac89e0ba0..e7f4c36cde29 100644 --- a/servo/components/plugins/utils.rs +++ b/servo/components/plugins/utils.rs @@ -76,7 +76,7 @@ pub fn unsafe_context(map: &ast_map::Map, id: ast::NodeId) -> bool { }, Some(ast_map::NodeItem(itm)) => { match itm.node { - ast::ItemFn(_, style, _, _, _) => match style { + ast::ItemFn(_, style, _, _, _, _) => match style { ast::Unsafety::Unsafe => true, _ => false, }, diff --git a/servo/components/servo/Cargo.lock b/servo/components/servo/Cargo.lock index ffd53bb25a92..c611d89dc5ac 100644 --- a/servo/components/servo/Cargo.lock +++ b/servo/components/servo/Cargo.lock @@ -23,7 +23,7 @@ dependencies = [ "script_tests 0.0.1", "style_tests 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "util_tests 0.0.1", "webdriver_server 0.0.1", @@ -62,7 +62,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byteorder" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -113,8 +113,8 @@ dependencies = [ [[package]] name = "clock_ticks" -version = "0.0.5" -source = "git+https://github.com/tomaka/clock_ticks#462848731d99ed2f800e2e5a19e2d8ca3b11c90c" +version = "0.0.6" +source = "git+https://github.com/tomaka/clock_ticks#acfcf96806ae5e3bc647b7412a1c430ce62b79a1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -144,7 +144,7 @@ dependencies = [ "script_traits 0.0.1", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -157,13 +157,13 @@ dependencies = [ "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core_foundation" version = "0.1.0" -source = "git+https://github.com/servo/rust-core-foundation#928efbae42fc596e6ede2cf0949c3d6d6f3dad8f" +source = "git+https://github.com/servo/rust-core-foundation#c8236c28599b07894fa7d6887db2fa91bc7fda24" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -210,7 +210,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -223,7 +223,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -295,7 +295,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "expat-sys" version = "2.1.0" -source = "git+https://github.com/servo/libexpat#eecae9f2e65b71a956375aa13bae3733e77fa519" +source = "git+https://github.com/servo/libexpat#a6ccf2d2dc9bc5e7c5d9318c1e43933013a15787" [[package]] name = "flate2" @@ -303,7 +303,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -340,7 +340,7 @@ dependencies = [ [[package]] name = "freetype-sys" version = "2.4.11" -source = "git+https://github.com/servo/libfreetype2#d076771cd46011264a4674c0f20dc3423e6f3422" +source = "git+https://github.com/servo/libfreetype2#86730043889cb17694bb65d7355d02521b6757cf" [[package]] name = "gcc" @@ -352,13 +352,13 @@ name = "gdi32-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "geom" version = "0.1.0" -source = "git+https://github.com/servo/rust-geom#c4bdb1ef8f4915ae636eb752b103f69246b50304" +source = "git+https://github.com/servo/rust-geom#270d0246b79fbf86fc2938c4952cae74e4025fcf" dependencies = [ "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", @@ -396,7 +396,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -424,12 +424,12 @@ dependencies = [ [[package]] name = "gl_generator" -version = "0.0.25" +version = "0.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xml-rs 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -438,7 +438,7 @@ version = "0.0.1" source = "git+https://github.com/servo/gleam#f2edabf2ef0474bb270b107e5e68c2727c4a422d" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -451,18 +451,18 @@ dependencies = [ "android_glue 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gdi32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "glutin_cocoa 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "glutin_cocoa 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_core_foundation 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_core_graphics 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "osmesa-sys 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "x11 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -483,14 +483,14 @@ dependencies = [ "net 0.0.1", "script_traits 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "x11 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "glutin_cocoa" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -521,7 +521,7 @@ version = "0.0.1" source = "git+https://github.com/servo/rust-glx#60ac0aee2438eadb4b51ddc8eac6fc4b5ca8e447" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -537,7 +537,7 @@ dependencies = [ [[package]] name = "html5ever" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "html5ever_macros 0.0.0 (git+https://github.com/servo/html5ever)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -552,7 +552,7 @@ dependencies = [ [[package]] name = "html5ever_macros" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "mac 0.0.2 (git+https://github.com/reem/rust-mac)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -560,7 +560,7 @@ dependencies = [ [[package]] name = "httparse" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -569,17 +569,36 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "traitobject 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hyper" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -610,7 +629,7 @@ name = "kernel32-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -621,7 +640,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "layers" version = "0.1.0" -source = "git+https://github.com/servo/rust-layers#cfc29e48a11f0c1e5390a049850c3ba10f23e0ad" +source = "git+https://github.com/servo/rust-layers#842038559a402b37fc8bf4134a4d1329b0607739" dependencies = [ "azure 0.1.0 (git+https://github.com/servo/rust-azure)", "cgl 0.0.1 (git+https://github.com/servo/rust-cgl)", @@ -646,7 +665,7 @@ dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "canvas 0.0.1", "canvas_traits 0.0.1", - "clock_ticks 0.0.5 (git+https://github.com/tomaka/clock_ticks)", + "clock_ticks 0.0.6 (git+https://github.com/tomaka/clock_ticks)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", @@ -666,7 +685,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -680,13 +699,13 @@ dependencies = [ "net_traits 0.0.1", "profile_traits 0.0.1", "script_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] [[package]] name = "lazy_static" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -743,7 +762,7 @@ dependencies = [ [[package]] name = "miniz-sys" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -768,7 +787,7 @@ dependencies = [ "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "png 0.1.0 (git+https://github.com/servo/rust-png)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -785,11 +804,11 @@ dependencies = [ "net_traits 0.0.1", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "png 0.1.0 (git+https://github.com/servo/rust-png)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", - "regex_macros 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", + "regex_macros 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -802,7 +821,7 @@ dependencies = [ "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "net 0.0.1", "net_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -815,7 +834,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "stb_image 0.1.0 (git+https://github.com/servo/rust-stb-image)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -830,7 +849,7 @@ dependencies = [ [[package]] name = "num_cpus" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -867,7 +886,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -965,7 +984,7 @@ version = "0.0.1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "profile_traits 0.0.1", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "task_info 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", @@ -976,7 +995,7 @@ name = "profile_traits" version = "0.0.1" dependencies = [ "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -994,15 +1013,23 @@ dependencies = [ [[package]] name = "regex" -version = "0.1.30" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "regex-syntax 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex_macros" -version = "0.1.17" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1041,7 +1068,7 @@ dependencies = [ "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver_traits 0.0.1", @@ -1065,7 +1092,7 @@ dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -1073,7 +1100,7 @@ dependencies = [ [[package]] name = "selectors" version = "0.1.0" -source = "git+https://github.com/servo/rust-selectors#66e21c10cd1feff49e0d934c1861701bc7cd9c44" +source = "git+https://github.com/servo/rust-selectors#e0c8462f2347ae6b3499d07b6a11d8fb0fea4d96" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1089,14 +1116,14 @@ name = "shared_library" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "skia" version = "0.0.20130412" -source = "git+https://github.com/servo/skia#00aaf728f58677922be96f760c5789250904fe62" +source = "git+https://github.com/servo/skia#1b0a8f5b3805f510cb155476c5f245ef7a16ca54" dependencies = [ "expat-sys 2.1.0 (git+https://github.com/servo/libexpat)", "freetype-sys 2.4.11 (git+https://github.com/servo/libfreetype2)", @@ -1120,7 +1147,7 @@ name = "string_cache" version = "0.1.0" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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)", @@ -1133,7 +1160,7 @@ name = "string_cache_plugin" version = "0.1.1" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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.0 (git+https://github.com/servo/string-cache)", ] @@ -1151,7 +1178,7 @@ dependencies = [ "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1159,7 +1186,7 @@ dependencies = [ "selectors 0.1.0 (git+https://github.com/servo/rust-selectors)", "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -1173,7 +1200,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -1211,6 +1238,11 @@ name = "traitobject" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "traitobject" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "typeable" version = "0.1.1" @@ -1223,7 +1255,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "url" -version = "0.2.33" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1233,10 +1265,11 @@ dependencies = [ [[package]] name = "user32-sys" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1249,10 +1282,10 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1261,7 +1294,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1288,7 +1321,7 @@ source = "git+https://github.com/jgraham/webdriver-rust.git#038c1828c5dd4ab7b8f7 dependencies = [ "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1300,7 +1333,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver 0.2.0 (git+https://github.com/jgraham/webdriver-rust.git)", @@ -1320,23 +1353,28 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "winapi" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "winapi-build" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "x11" version = "1.1.1" @@ -1357,7 +1395,7 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.1.24" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/servo/ports/cef/Cargo.lock b/servo/ports/cef/Cargo.lock index d67bf315e3ef..684700375e0e 100644 --- a/servo/ports/cef/Cargo.lock +++ b/servo/ports/cef/Cargo.lock @@ -27,7 +27,7 @@ dependencies = [ "servo 0.0.1", "stb_image 0.1.0 (git+https://github.com/servo/rust-stb-image)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "x11 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -61,7 +61,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byteorder" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -112,8 +112,8 @@ dependencies = [ [[package]] name = "clock_ticks" -version = "0.0.5" -source = "git+https://github.com/tomaka/clock_ticks#462848731d99ed2f800e2e5a19e2d8ca3b11c90c" +version = "0.0.6" +source = "git+https://github.com/tomaka/clock_ticks#acfcf96806ae5e3bc647b7412a1c430ce62b79a1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -121,7 +121,7 @@ dependencies = [ [[package]] name = "cocoa" version = "0.1.1" -source = "git+https://github.com/servo/rust-cocoa#493594f4e23a5f534a28be83748b6a0c058e2373" +source = "git+https://github.com/servo/rust-cocoa#07dcca59b14e154f2b19805eea3ea646c8ea56cb" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -153,7 +153,7 @@ dependencies = [ "script_traits 0.0.1", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -166,13 +166,13 @@ dependencies = [ "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core_foundation" version = "0.1.0" -source = "git+https://github.com/servo/rust-core-foundation#928efbae42fc596e6ede2cf0949c3d6d6f3dad8f" +source = "git+https://github.com/servo/rust-core-foundation#c8236c28599b07894fa7d6887db2fa91bc7fda24" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -219,7 +219,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -232,7 +232,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -304,7 +304,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "expat-sys" version = "2.1.0" -source = "git+https://github.com/servo/libexpat#eecae9f2e65b71a956375aa13bae3733e77fa519" +source = "git+https://github.com/servo/libexpat#a6ccf2d2dc9bc5e7c5d9318c1e43933013a15787" [[package]] name = "flate2" @@ -312,7 +312,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -349,7 +349,7 @@ dependencies = [ [[package]] name = "freetype-sys" version = "2.4.11" -source = "git+https://github.com/servo/libfreetype2#d076771cd46011264a4674c0f20dc3423e6f3422" +source = "git+https://github.com/servo/libfreetype2#86730043889cb17694bb65d7355d02521b6757cf" [[package]] name = "gcc" @@ -361,13 +361,13 @@ name = "gdi32-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "geom" version = "0.1.0" -source = "git+https://github.com/servo/rust-geom#c4bdb1ef8f4915ae636eb752b103f69246b50304" +source = "git+https://github.com/servo/rust-geom#270d0246b79fbf86fc2938c4952cae74e4025fcf" dependencies = [ "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", @@ -405,7 +405,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -426,12 +426,12 @@ dependencies = [ [[package]] name = "gl_generator" -version = "0.0.25" +version = "0.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xml-rs 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -440,7 +440,7 @@ version = "0.0.1" source = "git+https://github.com/servo/gleam#f2edabf2ef0474bb270b107e5e68c2727c4a422d" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -453,18 +453,18 @@ dependencies = [ "android_glue 0.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "gdi32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", - "glutin_cocoa 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", + "glutin_cocoa 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_core_foundation 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "glutin_core_graphics 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "osmesa-sys 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", - "user32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "user32-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", "x11 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -485,14 +485,14 @@ dependencies = [ "net 0.0.1", "script_traits 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "x11 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "glutin_cocoa" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -523,7 +523,7 @@ version = "0.0.1" source = "git+https://github.com/servo/rust-glx#60ac0aee2438eadb4b51ddc8eac6fc4b5ca8e447" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -539,7 +539,7 @@ dependencies = [ [[package]] name = "html5ever" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "html5ever_macros 0.0.0 (git+https://github.com/servo/html5ever)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -554,7 +554,7 @@ dependencies = [ [[package]] name = "html5ever_macros" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "mac 0.0.2 (git+https://github.com/reem/rust-mac)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -562,7 +562,7 @@ dependencies = [ [[package]] name = "httparse" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -571,17 +571,36 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "traitobject 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hyper" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -612,7 +631,7 @@ name = "kernel32-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -623,7 +642,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "layers" version = "0.1.0" -source = "git+https://github.com/servo/rust-layers#cfc29e48a11f0c1e5390a049850c3ba10f23e0ad" +source = "git+https://github.com/servo/rust-layers#842038559a402b37fc8bf4134a4d1329b0607739" dependencies = [ "azure 0.1.0 (git+https://github.com/servo/rust-azure)", "cgl 0.0.1 (git+https://github.com/servo/rust-cgl)", @@ -648,7 +667,7 @@ dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "canvas 0.0.1", "canvas_traits 0.0.1", - "clock_ticks 0.0.5 (git+https://github.com/tomaka/clock_ticks)", + "clock_ticks 0.0.6 (git+https://github.com/tomaka/clock_ticks)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", @@ -668,7 +687,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -682,13 +701,13 @@ dependencies = [ "net_traits 0.0.1", "profile_traits 0.0.1", "script_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] [[package]] name = "lazy_static" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -745,7 +764,7 @@ dependencies = [ [[package]] name = "miniz-sys" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -770,7 +789,7 @@ dependencies = [ "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "png 0.1.0 (git+https://github.com/servo/rust-png)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -787,11 +806,11 @@ dependencies = [ "net_traits 0.0.1", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "png 0.1.0 (git+https://github.com/servo/rust-png)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", - "regex_macros 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", + "regex_macros 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -805,7 +824,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "stb_image 0.1.0 (git+https://github.com/servo/rust-stb-image)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -820,7 +839,7 @@ dependencies = [ [[package]] name = "num_cpus" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -857,7 +876,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -955,7 +974,7 @@ version = "0.0.1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "profile_traits 0.0.1", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "task_info 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", @@ -966,7 +985,7 @@ name = "profile_traits" version = "0.0.1" dependencies = [ "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -984,15 +1003,23 @@ dependencies = [ [[package]] name = "regex" -version = "0.1.30" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "regex-syntax 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex_macros" -version = "0.1.17" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1031,7 +1058,7 @@ dependencies = [ "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver_traits 0.0.1", @@ -1047,7 +1074,7 @@ dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -1055,7 +1082,7 @@ dependencies = [ [[package]] name = "selectors" version = "0.1.0" -source = "git+https://github.com/servo/rust-selectors#66e21c10cd1feff49e0d934c1861701bc7cd9c44" +source = "git+https://github.com/servo/rust-selectors#e0c8462f2347ae6b3499d07b6a11d8fb0fea4d96" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1086,7 +1113,7 @@ dependencies = [ "profile_traits 0.0.1", "script 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_server 0.0.1", ] @@ -1096,14 +1123,14 @@ name = "shared_library" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "skia" version = "0.0.20130412" -source = "git+https://github.com/servo/skia#00aaf728f58677922be96f760c5789250904fe62" +source = "git+https://github.com/servo/skia#1b0a8f5b3805f510cb155476c5f245ef7a16ca54" dependencies = [ "expat-sys 2.1.0 (git+https://github.com/servo/libexpat)", "freetype-sys 2.4.11 (git+https://github.com/servo/libfreetype2)", @@ -1127,7 +1154,7 @@ name = "string_cache" version = "0.1.0" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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)", @@ -1140,7 +1167,7 @@ name = "string_cache_plugin" version = "0.1.1" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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.0 (git+https://github.com/servo/string-cache)", ] @@ -1158,7 +1185,7 @@ dependencies = [ "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1166,7 +1193,7 @@ dependencies = [ "selectors 0.1.0 (git+https://github.com/servo/rust-selectors)", "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -1204,6 +1231,11 @@ name = "traitobject" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "traitobject" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "typeable" version = "0.1.1" @@ -1216,7 +1248,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "url" -version = "0.2.33" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1226,10 +1258,11 @@ dependencies = [ [[package]] name = "user32-sys" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1242,10 +1275,10 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1254,7 +1287,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1273,7 +1306,7 @@ source = "git+https://github.com/jgraham/webdriver-rust.git#038c1828c5dd4ab7b8f7 dependencies = [ "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1285,7 +1318,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver 0.2.0 (git+https://github.com/jgraham/webdriver-rust.git)", @@ -1305,23 +1338,28 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "winapi" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "winapi-build" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "x11" version = "1.1.1" @@ -1342,7 +1380,7 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.1.24" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/servo/ports/gonk/Cargo.lock b/servo/ports/gonk/Cargo.lock index 7a10f08a05dc..3c01648decc7 100644 --- a/servo/ports/gonk/Cargo.lock +++ b/servo/ports/gonk/Cargo.lock @@ -20,7 +20,7 @@ dependencies = [ "script_traits 0.0.1", "servo 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -48,7 +48,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "byteorder" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -99,8 +99,8 @@ dependencies = [ [[package]] name = "clock_ticks" -version = "0.0.5" -source = "git+https://github.com/tomaka/clock_ticks#462848731d99ed2f800e2e5a19e2d8ca3b11c90c" +version = "0.0.6" +source = "git+https://github.com/tomaka/clock_ticks#acfcf96806ae5e3bc647b7412a1c430ce62b79a1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -130,7 +130,7 @@ dependencies = [ "script_traits 0.0.1", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -143,13 +143,13 @@ dependencies = [ "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "core_foundation" version = "0.1.0" -source = "git+https://github.com/servo/rust-core-foundation#928efbae42fc596e6ede2cf0949c3d6d6f3dad8f" +source = "git+https://github.com/servo/rust-core-foundation#c8236c28599b07894fa7d6887db2fa91bc7fda24" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -196,7 +196,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -209,7 +209,7 @@ dependencies = [ "msg 0.0.1", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -285,13 +285,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "expat-sys" version = "2.1.0" -source = "git+https://github.com/servo/libexpat#eecae9f2e65b71a956375aa13bae3733e77fa519" +source = "git+https://github.com/servo/libexpat#a6ccf2d2dc9bc5e7c5d9318c1e43933013a15787" [[package]] name = "flate2" @@ -299,7 +299,7 @@ version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", - "miniz-sys 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "miniz-sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -336,7 +336,7 @@ dependencies = [ [[package]] name = "freetype-sys" version = "2.4.11" -source = "git+https://github.com/servo/libfreetype2#d076771cd46011264a4674c0f20dc3423e6f3422" +source = "git+https://github.com/servo/libfreetype2#86730043889cb17694bb65d7355d02521b6757cf" [[package]] name = "gcc" @@ -346,7 +346,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "geom" version = "0.1.0" -source = "git+https://github.com/servo/rust-geom#c4bdb1ef8f4915ae636eb752b103f69246b50304" +source = "git+https://github.com/servo/rust-geom#270d0246b79fbf86fc2938c4952cae74e4025fcf" dependencies = [ "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", @@ -384,7 +384,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -405,12 +405,12 @@ dependencies = [ [[package]] name = "gl_generator" -version = "0.0.25" +version = "0.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "xml-rs 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", + "xml-rs 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -419,7 +419,7 @@ version = "0.0.1" source = "git+https://github.com/servo/gleam#f2edabf2ef0474bb270b107e5e68c2727c4a422d" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -430,7 +430,7 @@ version = "0.0.1" source = "git+https://github.com/servo/rust-glx#60ac0aee2438eadb4b51ddc8eac6fc4b5ca8e447" dependencies = [ "gl_common 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "gl_generator 0.0.25 (registry+https://github.com/rust-lang/crates.io-index)", + "gl_generator 0.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "khronos_api 0.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -446,7 +446,7 @@ dependencies = [ [[package]] name = "html5ever" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "html5ever_macros 0.0.0 (git+https://github.com/servo/html5ever)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -461,7 +461,7 @@ dependencies = [ [[package]] name = "html5ever_macros" version = "0.0.0" -source = "git+https://github.com/servo/html5ever#7ddaa598b84e5e7fb9bf5313c02c1aaca970cb4b" +source = "git+https://github.com/servo/html5ever#f026acf403e92d264dc63665c613a205e3ffb2a9" dependencies = [ "mac 0.0.2 (git+https://github.com/reem/rust-mac)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "httparse" -version = "0.1.1" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -478,17 +478,36 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "traitobject 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hyper" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cookie 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.0.11 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "traitobject 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "typeable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -519,7 +538,7 @@ name = "kernel32-sys" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -530,7 +549,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "layers" version = "0.1.0" -source = "git+https://github.com/servo/rust-layers#cfc29e48a11f0c1e5390a049850c3ba10f23e0ad" +source = "git+https://github.com/servo/rust-layers#842038559a402b37fc8bf4134a4d1329b0607739" dependencies = [ "azure 0.1.0 (git+https://github.com/servo/rust-azure)", "cgl 0.0.1 (git+https://github.com/servo/rust-cgl)", @@ -555,7 +574,7 @@ dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "canvas 0.0.1", "canvas_traits 0.0.1", - "clock_ticks 0.0.5 (git+https://github.com/tomaka/clock_ticks)", + "clock_ticks 0.0.6 (git+https://github.com/tomaka/clock_ticks)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", @@ -575,7 +594,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -589,13 +608,13 @@ dependencies = [ "net_traits 0.0.1", "profile_traits 0.0.1", "script_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] [[package]] name = "lazy_static" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -644,7 +663,7 @@ dependencies = [ [[package]] name = "miniz-sys" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -669,7 +688,7 @@ dependencies = [ "layers 0.1.0 (git+https://github.com/servo/rust-layers)", "png 0.1.0 (git+https://github.com/servo/rust-png)", "style 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -686,11 +705,11 @@ dependencies = [ "net_traits 0.0.1", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "png 0.1.0 (git+https://github.com/servo/rust-png)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", - "regex_macros 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", + "regex_macros 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -704,7 +723,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "stb_image 0.1.0 (git+https://github.com/servo/rust-stb-image)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -719,7 +738,7 @@ dependencies = [ [[package]] name = "num_cpus" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -747,7 +766,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -836,7 +855,7 @@ version = "0.0.1" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "profile_traits 0.0.1", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "task_info 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", @@ -847,7 +866,7 @@ name = "profile_traits" version = "0.0.1" dependencies = [ "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -865,15 +884,23 @@ dependencies = [ [[package]] name = "regex" -version = "0.1.30" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "regex-syntax 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex_macros" -version = "0.1.17" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -912,7 +939,7 @@ dependencies = [ "style 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver_traits 0.0.1", @@ -928,7 +955,7 @@ dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", "net_traits 0.0.1", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_traits 0.0.1", ] @@ -936,7 +963,7 @@ dependencies = [ [[package]] name = "selectors" version = "0.1.0" -source = "git+https://github.com/servo/rust-selectors#66e21c10cd1feff49e0d934c1861701bc7cd9c44" +source = "git+https://github.com/servo/rust-selectors#e0c8462f2347ae6b3499d07b6a11d8fb0fea4d96" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -966,7 +993,7 @@ dependencies = [ "profile_traits 0.0.1", "script 0.0.1", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "webdriver_server 0.0.1", ] @@ -974,7 +1001,7 @@ dependencies = [ [[package]] name = "skia" version = "0.0.20130412" -source = "git+https://github.com/servo/skia#00aaf728f58677922be96f760c5789250904fe62" +source = "git+https://github.com/servo/skia#1b0a8f5b3805f510cb155476c5f245ef7a16ca54" dependencies = [ "expat-sys 2.1.0 (git+https://github.com/servo/libexpat)", "freetype-sys 2.4.11 (git+https://github.com/servo/libfreetype2)", @@ -998,7 +1025,7 @@ name = "string_cache" version = "0.1.0" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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)", @@ -1011,7 +1038,7 @@ name = "string_cache_plugin" version = "0.1.1" source = "git+https://github.com/servo/string-cache#c5912f925e9c1db7dbe4a7980fbc3eed08eef51d" dependencies = [ - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (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.0 (git+https://github.com/servo/string-cache)", ] @@ -1029,7 +1056,7 @@ dependencies = [ "cssparser 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", @@ -1037,7 +1064,7 @@ dependencies = [ "selectors 0.1.0 (git+https://github.com/servo/rust-selectors)", "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", ] @@ -1075,6 +1102,11 @@ name = "traitobject" version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "traitobject" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "typeable" version = "0.1.1" @@ -1087,7 +1119,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "url" -version = "0.2.33" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "encoding 0.2.32 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1105,10 +1137,10 @@ dependencies = [ "fnv 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "geom 0.1.0 (git+https://github.com/servo/rust-geom)", "layers 0.1.0 (git+https://github.com/servo/rust-layers)", - "lazy_static 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "num 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "plugins 0.0.1", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1117,7 +1149,7 @@ dependencies = [ "string_cache 0.1.0 (git+https://github.com/servo/string-cache)", "string_cache_plugin 0.1.1 (git+https://github.com/servo/string-cache)", "time 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1136,7 +1168,7 @@ source = "git+https://github.com/jgraham/webdriver-rust.git#038c1828c5dd4ab7b8f7 dependencies = [ "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1148,7 +1180,7 @@ dependencies = [ "msg 0.0.1", "png 0.1.0 (git+https://github.com/servo/rust-png)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", "util 0.0.1", "uuid 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "webdriver 0.2.0 (git+https://github.com/jgraham/webdriver-rust.git)", @@ -1168,18 +1200,18 @@ version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "openssl 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", "unicase 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "url 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "url 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "winapi" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1205,7 +1237,7 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.1.24" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/servo/rust-snapshot-hash b/servo/rust-snapshot-hash index eb07c90a5fd7..d8be02aa80f9 100644 --- a/servo/rust-snapshot-hash +++ b/servo/rust-snapshot-hash @@ -1 +1 @@ -b301e02f37127da993dd2cf370aa1066d48b042e/rustc-1.2.0-dev +474c6e0ae47578b3e608c893e18bc83798b565aa/rustc-1.2.0-dev