diff options
author | Oriol Brufau <obrufau@igalia.com> | 2025-03-19 09:53:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-19 08:53:26 +0000 |
commit | 4acaa08cf508ae42a7bd37e15047a14d17bb6d63 (patch) | |
tree | 0bd11228af8a953a0450879de0f60d5951660ade /components/layout_2020 | |
parent | 3a3c3aeb7548db10a6ef16ca988fb573dd349303 (diff) | |
download | servo-4acaa08cf508ae42a7bd37e15047a14d17bb6d63.tar.gz servo-4acaa08cf508ae42a7bd37e15047a14d17bb6d63.zip |
Cleanup Stylo dependencies (#36046)
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>
Diffstat (limited to 'components/layout_2020')
-rw-r--r-- | components/layout_2020/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout_2020/Cargo.toml b/components/layout_2020/Cargo.toml index 29475ed3c2b..b0cb2d05ba7 100644 --- a/components/layout_2020/Cargo.toml +++ b/components/layout_2020/Cargo.toml @@ -46,8 +46,8 @@ servo_arc = { workspace = true } servo_config = { path = "../config" } servo_geometry = { path = "../geometry" } servo_url = { path = "../url" } -style = { workspace = true } -style_traits = { workspace = true } +stylo = { workspace = true } +stylo_traits = { workspace = true } taffy = { workspace = true } tracing = { workspace = true, optional = true } unicode-bidi = { workspace = true } |