diff options
Diffstat (limited to 'components/constellation')
-rw-r--r-- | components/constellation/Cargo.toml | 1 | ||||
-rw-r--r-- | components/constellation/constellation.rs | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/components/constellation/Cargo.toml b/components/constellation/Cargo.toml index 6d880a03c60..1544fceba57 100644 --- a/components/constellation/Cargo.toml +++ b/components/constellation/Cargo.toml @@ -42,7 +42,6 @@ servo_remutex = { path = "../remutex" } servo_url = { path = "../url" } style_traits = { path = "../style_traits" } webgpu = { path = "../webgpu" } -webrender = { workspace = true } webrender_api = { workspace = true } webrender_traits = { path = "../webrender_traits" } webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] } diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index 2207251de70..ffdb43a815a 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.rs @@ -156,8 +156,7 @@ use servo_rand::{random, Rng, ServoRng, SliceRandom}; use servo_url::{Host, ImmutableOrigin, ServoUrl}; use style_traits::CSSPixel; use webgpu::{self, WebGPU, WebGPURequest}; -use webrender::{RenderApi, RenderApiSender}; -use webrender_api::DocumentId; +use webrender_api::{DocumentId, RenderApi, RenderApiSender}; use webrender_traits::WebrenderExternalImageRegistry; use crate::browsingcontext::{ |