diff options
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index cac18875ac3..ea3caba8a3d 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -5,6 +5,7 @@ #![feature(alloc)] #![feature(box_syntax)] #![feature(core_intrinsics)] +#![feature(custom_derive)] #![feature(fnbox)] #![feature(hashmap_hasher)] #![feature(heap_api)] @@ -18,6 +19,8 @@ #![feature(step_trait)] #![feature(zero_one)] +#![plugin(serde_macros)] + #[macro_use] extern crate log; extern crate azure; @@ -31,6 +34,7 @@ extern crate num as num_lib; extern crate num_cpus; extern crate rand; extern crate rustc_serialize; +extern crate serde; extern crate smallvec; extern crate url; |