diff options
Diffstat (limited to 'components/shared/net')
-rw-r--r-- | components/shared/net/Cargo.toml | 2 | ||||
-rw-r--r-- | components/shared/net/image_cache.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/shared/net/Cargo.toml b/components/shared/net/Cargo.toml index 511460b4f98..d4b30fb86e5 100644 --- a/components/shared/net/Cargo.toml +++ b/components/shared/net/Cargo.toml @@ -15,6 +15,7 @@ doctest = false [dependencies] base = { workspace = true } +compositing_traits = { workspace = true } content-security-policy = { workspace = true } cookie = { workspace = true } crossbeam-channel = { workspace = true } @@ -38,4 +39,3 @@ servo_rand = { path = "../../rand" } servo_url = { path = "../../url" } url = { workspace = true } uuid = { workspace = true } -webrender_traits = { workspace = true } diff --git a/components/shared/net/image_cache.rs b/components/shared/net/image_cache.rs index abe0385c71a..7b6d364af58 100644 --- a/components/shared/net/image_cache.rs +++ b/components/shared/net/image_cache.rs @@ -5,13 +5,13 @@ use std::sync::Arc; use base::id::PipelineId; +use compositing_traits::CrossProcessCompositorApi; use ipc_channel::ipc::IpcSender; use log::debug; use malloc_size_of_derive::MallocSizeOf; use pixels::{Image, ImageMetadata}; use serde::{Deserialize, Serialize}; use servo_url::{ImmutableOrigin, ServoUrl}; -use webrender_traits::CrossProcessCompositorApi; use crate::FetchResponseMsg; use crate::request::CorsSettings; |