diff options
author | Nico Burns <nico@nicoburns.com> | 2025-03-12 13:02:12 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-12 00:02:12 +0000 |
commit | f527217bdc81faccbc599d7868123561c85441d5 (patch) | |
tree | ad9613497361c898de84c048fea7591ea00b90d7 /components/shared/script | |
parent | e4757534fe61c580615921ac8cdd4eb5a4a02e7a (diff) | |
download | servo-f527217bdc81faccbc599d7868123561c85441d5.tar.gz servo-f527217bdc81faccbc599d7868123561c85441d5.zip |
Use new stylo crate renames (#35898)
Signed-off-by: Nico Burns <nico@nicoburns.com>
Diffstat (limited to 'components/shared/script')
-rw-r--r-- | components/shared/script/Cargo.toml | 2 | ||||
-rw-r--r-- | components/shared/script/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/shared/script/Cargo.toml b/components/shared/script/Cargo.toml index a1e71af824d..34c5e9a6582 100644 --- a/components/shared/script/Cargo.toml +++ b/components/shared/script/Cargo.toml @@ -39,7 +39,7 @@ net_traits = { workspace = true } pixels = { path = "../../pixels" } profile_traits = { workspace = true } serde = { workspace = true } -servo_atoms = { workspace = true } +stylo_atoms = { workspace = true } servo_url = { path = "../../url" } style_traits = { workspace = true } uuid = { workspace = true } diff --git a/components/shared/script/lib.rs b/components/shared/script/lib.rs index 4ca8cff66ad..20f830b5f29 100644 --- a/components/shared/script/lib.rs +++ b/components/shared/script/lib.rs @@ -49,9 +49,9 @@ use net_traits::{ReferrerPolicy, ResourceThreads}; use pixels::PixelFormat; use profile_traits::{mem, time as profile_time}; use serde::{Deserialize, Deserializer, Serialize, Serializer}; -use servo_atoms::Atom; use servo_url::{ImmutableOrigin, ServoUrl}; use style_traits::{CSSPixel, SpeculativePainter}; +use stylo_atoms::Atom; #[cfg(feature = "webgpu")] use webgpu::WebGPUMsg; use webrender_api::units::{DevicePixel, LayoutPixel}; |