diff options
-rw-r--r-- | components/script/Cargo.toml | 2 | ||||
-rw-r--r-- | components/script/dom/servohtmlparser.rs | 2 | ||||
-rw-r--r-- | components/servo/Cargo.lock | 4 | ||||
-rw-r--r-- | ports/cef/Cargo.lock | 4 | ||||
-rw-r--r-- | ports/gonk/Cargo.lock | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index b06ae8e8e48..e3c4f3a1988 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -72,7 +72,7 @@ euclid = {version = "0.6.1", features = ["plugins"]} fnv = "1.0" heapsize = "0.2.5" heapsize_plugin = "0.1.2" -html5ever = {version = "0.4.2", features = ["heap_size", "unstable"]} +html5ever = {version = "0.5.0", features = ["heap_size", "unstable"]} hyper = { version = "0.7", features = [ "serde-serialization" ] } image = "0.5.0" libc = "0.2" diff --git a/components/script/dom/servohtmlparser.rs b/components/script/dom/servohtmlparser.rs index 0a541fbea44..dea7c2a44bd 100644 --- a/components/script/dom/servohtmlparser.rs +++ b/components/script/dom/servohtmlparser.rs @@ -522,7 +522,7 @@ struct Tracer { impl tree_builder::Tracer for Tracer { type Handle = JS<Node>; #[allow(unrooted_must_root)] - fn trace_handle(&self, node: JS<Node>) { + fn trace_handle(&self, node: &JS<Node>) { node.trace(self.trc); } } diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index 15d0f27e56f..9e06a30a581 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -828,7 +828,7 @@ dependencies = [ [[package]] name = "html5ever" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1575,7 +1575,7 @@ dependencies = [ "gfx_traits 0.0.1", "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize_plugin 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "html5ever 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "html5ever 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.2.0 (git+https://github.com/servo/ipc-channel)", diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 738ec0e1a40..74345761087 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "html5ever" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1463,7 +1463,7 @@ dependencies = [ "gfx_traits 0.0.1", "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize_plugin 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "html5ever 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "html5ever 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.2.0 (git+https://github.com/servo/ipc-channel)", diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index 8f3aeb8723f..ae03a327090 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -741,7 +741,7 @@ dependencies = [ [[package]] name = "html5ever" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1445,7 +1445,7 @@ dependencies = [ "gfx_traits 0.0.1", "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "heapsize_plugin 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "html5ever 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "html5ever 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", "ipc-channel 0.2.0 (git+https://github.com/servo/ipc-channel)", |