diff options
Diffstat (limited to 'components/gfx_traits/lib.rs')
-rw-r--r-- | components/gfx_traits/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/gfx_traits/lib.rs b/components/gfx_traits/lib.rs index 980e850b014..84e74038e40 100644 --- a/components/gfx_traits/lib.rs +++ b/components/gfx_traits/lib.rs @@ -3,13 +3,14 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #![feature(custom_derive, plugin)] -#![plugin(plugins, serde_macros)] +#![plugin(heapsize_plugin, plugins, serde_macros)] #![crate_name = "gfx_traits"] #![crate_type = "rlib"] extern crate azure; extern crate euclid; +extern crate heapsize; extern crate layers; extern crate msg; extern crate serde; |