diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 540ca27067a..98b35d01731 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -2,15 +2,28 @@ * 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(unsafe_destructor, int_uint, plugin, box_syntax)] +#![feature(alloc)] +#![feature(box_syntax)] +#![feature(collections)] +#![feature(core)] +#![feature(hash)] +#![feature(int_uint)] +#![cfg_attr(any(target_os="linux", target_os = "android"), feature(io))] +#![feature(libc)] +#![cfg_attr(any(target_os="linux", target_os = "android"), feature(path))] +#![feature(plugin)] +#![feature(rustc_private)] +#![feature(std_misc)] +#![feature(unicode)] +#![feature(unsafe_destructor)] #![allow(missing_copy_implementations)] -#![allow(unstable)] #[macro_use] extern crate log; extern crate azure; +#[macro_use] extern crate bitflags; extern crate collections; extern crate geom; extern crate layers; |