This repository was archived by the owner on May 28, 2024. It is now read-only.
File tree 3 files changed +2
-7
lines changed
3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 5
5
- stable
6
6
script :
7
7
- cargo test
8
- - ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --features unstable)
9
8
10
9
branches :
11
10
except :
Original file line number Diff line number Diff line change 3
3
name = " selectors"
4
4
version = " 0.14.0"
5
5
authors = [" Simon Sapin <simon.sapin@exyr.org>" , " Alan Jeffrey <ajeffrey@mozilla.com>" ]
6
- documentation = " http ://doc.servo.org /selectors/"
6
+ documentation = " https ://docs.rs /selectors/"
7
7
8
8
description = " CSS Selectors matching for Rust"
9
9
repository = " https://github.com/servo/rust-selectors"
@@ -12,14 +12,12 @@ keywords = ["css", "selectors"]
12
12
license = " MPL-2.0"
13
13
14
14
[features ]
15
- unstable = [" string_cache/unstable" ]
16
- heap_size = [" string_cache/heap_size" , " heapsize" , " heapsize_plugin" ]
15
+ heap_size = [" heapsize" , " heapsize_plugin" ]
17
16
18
17
[dependencies ]
19
18
bitflags = " 0.7"
20
19
matches = " 0.1"
21
20
cssparser = " >=0.6, <0.8"
22
21
fnv = " 1.0"
23
- string_cache = " 0.2.16"
24
22
heapsize = {version = " 0.3" , features = [" unstable" ], optional = true }
25
23
heapsize_plugin = {version = " 0.1.0" , optional = true }
Original file line number Diff line number Diff line change 2
2
* License, v. 2.0. If a copy of the MPL was not distributed with this
3
3
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
4
5
- #![ cfg_attr( all( test, feature = "unstable" ) , feature( test) ) ]
6
5
#![ cfg_attr( feature = "heap_size" , feature( plugin, custom_derive) ) ]
7
6
#![ cfg_attr( feature = "heap_size" , plugin( heapsize_plugin) ) ]
8
7
9
8
#[ cfg( feature = "heap_size" ) ] extern crate heapsize;
10
9
#[ macro_use] extern crate bitflags;
11
10
#[ macro_use] extern crate cssparser;
12
11
#[ macro_use] extern crate matches;
13
- #[ macro_use] extern crate string_cache;
14
12
extern crate fnv;
15
13
16
14
pub mod bloom;
You can’t perform that action at this time.
0 commit comments