mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
38 lines
763 B
TOML
38 lines
763 B
TOML
[package]
|
|
|
|
name = "selectors"
|
|
version = "0.21.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.27"
|
|
derive_more = "0.99"
|
|
log = "0.4"
|
|
fxhash = "0.2"
|
|
phf = "0.8"
|
|
precomputed-hash = "0.1"
|
|
servo_arc = { version = "0.1", path = "../servo_arc" }
|
|
smallvec = "1.0"
|
|
thin-slice = "0.1.0"
|
|
to_shmem = { path = "../to_shmem" }
|
|
to_shmem_derive = { path = "../to_shmem_derive" }
|
|
|
|
[build-dependencies]
|
|
phf_codegen = "0.8"
|