diff options
Diffstat (limited to 'components/script_layout_interface/lib.rs')
-rw-r--r-- | components/script_layout_interface/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index 375377262d7..9b8fbd7e26f 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -8,11 +8,6 @@ #![deny(unsafe_code)] -#[macro_use] -extern crate html5ever; -#[macro_use] -extern crate malloc_size_of_derive; - pub mod message; pub mod rpc; pub mod wrapper_traits; @@ -21,6 +16,7 @@ use atomic_refcell::AtomicRefCell; use canvas_traits::canvas::{CanvasId, CanvasMsg}; use ipc_channel::ipc::IpcSender; use libc::c_void; +use malloc_size_of_derive::MallocSizeOf; use net_traits::image_cache::PendingImageId; use script_traits::UntrustedNodeAddress; use servo_url::{ImmutableOrigin, ServoUrl}; |