diff options
Diffstat (limited to 'components/msg/lib.rs')
-rw-r--r-- | components/msg/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/msg/lib.rs b/components/msg/lib.rs index 2567bf9ced0..8741de21f75 100644 --- a/components/msg/lib.rs +++ b/components/msg/lib.rs @@ -2,16 +2,16 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![feature(hash)] #![feature(int_uint)] #![allow(missing_copy_implementations)] -#![allow(unstable)] extern crate azure; +#[macro_use] extern crate bitflags; extern crate geom; extern crate hyper; extern crate layers; -extern crate serialize; extern crate util; extern crate url; |