diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-01-30 15:06:31 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-04 22:03:32 +0100 |
commit | cb5cd8d881c39f549381e078b44f341dea733e68 (patch) | |
tree | 2035bc256a114cd362a10cf7e8c461a7743f8209 /components/script_traits/lib.rs | |
parent | 9932a5cf82a9fb109e7ac8b07e4f19535101ce44 (diff) | |
download | servo-cb5cd8d881c39f549381e078b44f341dea733e68.tar.gz servo-cb5cd8d881c39f549381e078b44f341dea733e68.zip |
Say farewell to in-tree HeapSizeOf
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 9229c626ab6..83761f20090 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -7,7 +7,7 @@ //! to depend on script. #![feature(custom_derive, plugin)] -#![plugin(plugins, serde_macros)] +#![plugin(heapsize_plugin, plugins, serde_macros)] #![deny(missing_docs)] extern crate app_units; @@ -15,6 +15,7 @@ extern crate canvas_traits; extern crate devtools_traits; extern crate euclid; extern crate gfx_traits; +extern crate heapsize; extern crate ipc_channel; extern crate libc; extern crate msg; @@ -50,7 +51,6 @@ use profile_traits::mem; use std::any::Any; use url::Url; use util::ipc::OptionalOpaqueIpcSender; -use util::mem::HeapSizeOf; pub use script_msg::{LayoutMsg, ScriptMsg}; |