diff options
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 3b5c99b8f3c..febf188fd77 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -3,11 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(custom_attribute, custom_derive, plugin)] -#![plugin(serde_macros, plugins)] +#![plugin(heapsize_plugin, serde_macros, plugins)] #[macro_use] extern crate bitflags; extern crate euclid; +extern crate heapsize; extern crate hyper; extern crate ipc_channel; extern crate layers; |