mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
49 lines
818 B
TOML
49 lines
818 B
TOML
[package]
|
|
name = "style"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "style"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.style_traits]
|
|
path = "../style_traits"
|
|
|
|
[dependencies.selectors]
|
|
git = "https://github.com/servo/rust-selectors"
|
|
features = ["unstable"]
|
|
|
|
[dependencies.cssparser]
|
|
version = "0.3.9"
|
|
features = [ "serde-serialization" ]
|
|
|
|
[dependencies.url]
|
|
version = "0.2"
|
|
features = [ "serde_serialization" ]
|
|
|
|
[dependencies]
|
|
app_units = "0.1"
|
|
log = "0.3"
|
|
encoding = "0.2"
|
|
fnv = "1.0"
|
|
rustc-serialize = "0.3"
|
|
matches = "0.1"
|
|
bitflags = "0.3"
|
|
num = "0.1.24"
|
|
lazy_static = "0.1.10"
|
|
smallvec = "0.1"
|
|
string_cache = "0.1"
|
|
string_cache_plugin = "0.1"
|
|
euclid = "0.2"
|
|
serde = "0.6"
|
|
serde_macros = "0.5"
|