selectors 0.3.0

CSS Selectors matching for Rust
[package]

name = "selectors"
version = "0.3.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>", "Alan Jeffrey <ajeffrey@mozilla.com>"]
documentation = "http://doc.servo.org/selectors/"

description = "CSS Selectors matching for Rust"
repository = "https://github.com/servo/rust-selectors"
readme = "README.md"
keywords = ["css", "selectors"]
license = "MPL-2.0"

[features]
unstable = ["string_cache/unstable"]
heap_size = ["string_cache/heap_size", "heapsize", "heapsize_plugin"]

[dependencies]
bitflags = "0.3"
matches = "0.1"
cssparser = "0.5"
smallvec = "0.1"
fnv = "1.0"
string_cache = "0.2.0"
quickersort = "1.0.0"

[dependencies.heapsize]
version = "0.1.1"
features = [ "unstable" ]
optional = true

[dependencies.heapsize_plugin]
version = "0.1.0"
optional = true

[dev-dependencies]
rand = "0.3"