mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
46 lines
992 B
TOML
46 lines
992 B
TOML
[package]
|
|
name = "style"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "style"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
gecko = []
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.style_traits]
|
|
path = "../style_traits"
|
|
|
|
[dependencies]
|
|
app_units = {version = "0.2.3", features = ["plugins"]}
|
|
bitflags = "0.3"
|
|
cssparser = {version = "0.5.5", features = ["heap_size", "serde-serialization"]}
|
|
encoding = "0.2"
|
|
euclid = {version = "0.6.4", features = ["plugins"]}
|
|
fnv = "1.0"
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
lazy_static = "0.1.10"
|
|
log = "0.3.5"
|
|
matches = "0.1"
|
|
num = "0.1.24"
|
|
rustc-serialize = "0.3"
|
|
selectors = {version = "0.5", features = ["heap_size", "unstable"]}
|
|
serde = {version = "0.7", features = ["nightly"]}
|
|
serde_macros = "0.7"
|
|
smallvec = "0.1"
|
|
string_cache = {version = "0.2.11", features = ["heap_size"]}
|
|
time = "0.1"
|
|
url = {version = "0.5.7", features = ["heap_size"]}
|
|
|