mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Now that Stylo considers `servo` as the default feature, Servo doesn't need to specify `features = ["servo"]`. Also use the same crate names as Stylo, rather than renaming them with `package`. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
27 lines
647 B
TOML
27 lines
647 B
TOML
[package]
|
|
name = "style_tests"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "style_tests"
|
|
path = "lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
cssparser = { workspace = true }
|
|
euclid = { workspace = true }
|
|
html5ever = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
selectors = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
stylo_atoms = { workspace = true }
|
|
stylo = { workspace = true }
|
|
stylo_traits = { workspace = true }
|
|
url = { workspace = true }
|