diff options
Diffstat (limited to 'components/shared/devtools')
-rw-r--r-- | components/shared/devtools/Cargo.toml | 2 | ||||
-rw-r--r-- | components/shared/devtools/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/shared/devtools/Cargo.toml b/components/shared/devtools/Cargo.toml index c3be3bcb01b..d68e3bbb612 100644 --- a/components/shared/devtools/Cargo.toml +++ b/components/shared/devtools/Cargo.toml @@ -11,12 +11,12 @@ name = "devtools_traits" path = "lib.rs" [dependencies] +base = { workspace = true } bitflags = { workspace = true } http = { workspace = true } ipc-channel = { workspace = true } malloc_size_of = { workspace = true } malloc_size_of_derive = { workspace = true } -msg = { workspace = true } serde = { workspace = true } servo_url = { path = "../../url" } time = { workspace = true } diff --git a/components/shared/devtools/lib.rs b/components/shared/devtools/lib.rs index 0726bb48541..f690fb59e0d 100644 --- a/components/shared/devtools/lib.rs +++ b/components/shared/devtools/lib.rs @@ -14,11 +14,11 @@ use std::net::TcpStream; use std::time::{Duration, SystemTime}; +use base::id::{BrowsingContextId, PipelineId}; use bitflags::bitflags; use http::{HeaderMap, Method}; use ipc_channel::ipc::IpcSender; use malloc_size_of_derive::MallocSizeOf; -use msg::constellation_msg::{BrowsingContextId, PipelineId}; use serde::{Deserialize, Serialize}; use servo_url::ServoUrl; use uuid::Uuid; |