mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move selector matching to an external library, for use outside Servo.
This commit is contained in:
parent
2e1adb3fa6
commit
2a50755c8a
26 changed files with 136 additions and 2896 deletions
|
@ -7,7 +7,6 @@
|
|||
#![feature(box_syntax)]
|
||||
#![feature(core)]
|
||||
#![feature(std_misc)]
|
||||
#![feature(hash)]
|
||||
#![feature(collections)]
|
||||
#![feature(rustc_private)]
|
||||
|
||||
|
@ -30,6 +29,7 @@ extern crate matches;
|
|||
|
||||
extern crate encoding;
|
||||
extern crate string_cache;
|
||||
extern crate selectors;
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
|
@ -41,7 +41,6 @@ extern crate util;
|
|||
|
||||
pub mod stylesheets;
|
||||
pub mod parser;
|
||||
pub mod selectors;
|
||||
pub mod selector_matching;
|
||||
#[macro_use] pub mod values;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue