mirror of
https://github.com/servo/servo.git
synced 2025-08-13 17:35:36 +01:00
Auto merge of #16689 - servo:m5e, r=nox
Upgrade to html5ever 0.16 <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16689) <!-- Reviewable:end -->
This commit is contained in:
commit
8b41c7c137
104 changed files with 363 additions and 471 deletions
|
@ -16,7 +16,7 @@ doctest = false
|
|||
gecko = ["nsstring_vendor", "rayon/unstable", "num_cpus"]
|
||||
use_bindgen = ["bindgen", "regex"]
|
||||
servo = ["serde/unstable", "serde", "serde_derive", "heapsize", "heapsize_derive",
|
||||
"style_traits/servo", "servo_atoms", "servo_config", "html5ever-atoms",
|
||||
"style_traits/servo", "servo_atoms", "servo_config", "html5ever",
|
||||
"cssparser/heapsize", "cssparser/serde", "encoding", "smallvec/heapsizeof",
|
||||
"rayon/unstable", "servo_url"]
|
||||
testing = []
|
||||
|
@ -35,7 +35,7 @@ euclid = "0.11"
|
|||
fnv = "1.0"
|
||||
heapsize = {version = "0.3.0", optional = true}
|
||||
heapsize_derive = {version = "0.1", optional = true}
|
||||
html5ever-atoms = {version = "0.3", optional = true}
|
||||
html5ever = {version = "0.16", optional = true}
|
||||
lazy_static = "0.2"
|
||||
log = "0.3"
|
||||
matches = "0.1"
|
||||
|
|
|
@ -50,7 +50,7 @@ extern crate fnv;
|
|||
#[cfg(feature = "gecko")] #[macro_use] pub mod gecko_string_cache;
|
||||
#[cfg(feature = "servo")] extern crate heapsize;
|
||||
#[cfg(feature = "servo")] #[macro_use] extern crate heapsize_derive;
|
||||
#[cfg(feature = "servo")] #[macro_use] extern crate html5ever_atoms;
|
||||
#[cfg(feature = "servo")] #[macro_use] extern crate html5ever;
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
#[macro_use]
|
||||
|
@ -141,9 +141,9 @@ use style_traits::ToCss;
|
|||
#[cfg(feature = "gecko")] pub use gecko_string_cache::Atom as LocalName;
|
||||
|
||||
#[cfg(feature = "servo")] pub use servo_atoms::Atom;
|
||||
#[cfg(feature = "servo")] pub use html5ever_atoms::Prefix;
|
||||
#[cfg(feature = "servo")] pub use html5ever_atoms::LocalName;
|
||||
#[cfg(feature = "servo")] pub use html5ever_atoms::Namespace;
|
||||
#[cfg(feature = "servo")] pub use html5ever::Prefix;
|
||||
#[cfg(feature = "servo")] pub use html5ever::LocalName;
|
||||
#[cfg(feature = "servo")] pub use html5ever::Namespace;
|
||||
|
||||
/// The CSS properties supported by the style system.
|
||||
/// Generated from the properties.mako.rs template by build.rs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue