diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-03 07:04:11 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-03 07:04:11 +0530 |
commit | ae20f2556bc7807b39b6649ac1f738644abcc26a (patch) | |
tree | bcc59a2bd4ab73367e3201417ae7e5fe59bc4849 /components/script/lib.rs | |
parent | ea385fdd117cf68e6550782371142a85a2a2af8a (diff) | |
parent | a1c830f1c13d75186d8d1a759ed73a0eac433179 (diff) | |
download | servo-ae20f2556bc7807b39b6649ac1f738644abcc26a.tar.gz servo-ae20f2556bc7807b39b6649ac1f738644abcc26a.zip |
Auto merge of #9510 - nox:bump-selectors, r=SimonSapin
Update rust-selectors
This commits updates rust-selectors to use the generic parser, and as
such it moves the element state into the style crate.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9510)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index a776fe2d484..6365c03c5b7 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -60,7 +60,7 @@ extern crate rand; extern crate ref_slice; extern crate rustc_serialize; extern crate script_traits; -#[macro_use(state_pseudo_classes)] extern crate selectors; +extern crate selectors; extern crate serde; extern crate smallvec; #[macro_use(atom, ns)] extern crate string_cache; |