mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
The property may be a shorthand property in which case the declaration block will contain the expanded longhand properties and values. MozReview-Commit-ID: KxqlYgbIZqL
28 lines
646 B
TOML
28 lines
646 B
TOML
[package]
|
|
name = "geckoservo"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
|
|
[lib]
|
|
name = "geckoservo"
|
|
path = "lib.rs"
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
app_units = "0.3"
|
|
cssparser = {version = "0.7"}
|
|
env_logger = "0.3"
|
|
euclid = "0.10.1"
|
|
lazy_static = "0.2"
|
|
libc = "0.2"
|
|
log = {version = "0.3.5", features = ["release_max_level_info"]}
|
|
num_cpus = "0.2.2"
|
|
parking_lot = "0.3"
|
|
selectors = "0.13"
|
|
style = {path = "../../components/style", features = ["gecko"]}
|
|
style_traits = {path = "../../components/style_traits"}
|
|
url = "1.2"
|
|
|
|
[dev-dependencies]
|
|
stylo_tests = {path = "../../tests/unit/stylo"}
|