servo/components/selectors/Cargo.toml
Andre Bogus 34b5d8fbe8 This updates the smallvec crate and enables the union feature
We had a mix of 0.6.2 and 0.6.5 (which is the current release),
this unifies to the latest version. It also enables the union
feature which removes the discriminant, reducing memory usage.
2018-09-19 07:16:30 +02:00

35 lines
707 B
TOML

[package]
name = "selectors"
version = "0.20.0"
authors = ["The Servo Project Developers"]
documentation = "https://docs.rs/selectors/"
description = "CSS Selectors matching for Rust"
repository = "https://github.com/servo/servo"
readme = "README.md"
keywords = ["css", "selectors"]
license = "MPL-2.0"
build = "build.rs"
[lib]
name = "selectors"
path = "lib.rs"
[features]
bench = []
[dependencies]
bitflags = "1.0"
matches = "0.1"
cssparser = "0.24.0"
log = "0.4"
fxhash = "0.2"
phf = "0.7.18"
precomputed-hash = "0.1"
servo_arc = { version = "0.1", path = "../servo_arc" }
smallvec = { version = "0.6", features = ["std", "union"] }
thin-slice = "0.1.0"
[build-dependencies]
phf_codegen = "0.7.18"