aboutsummaryrefslogtreecommitdiffstats
path: root/components/gfx/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r--components/gfx/lib.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs
index d44d52b5410..52d5a705de8 100644
--- a/components/gfx/lib.rs
+++ b/components/gfx/lib.rs
@@ -6,12 +6,10 @@
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]
-#![cfg_attr(any(target_os="linux", target_os = "android"), feature(io))]
#![feature(plugin)]
#![feature(rustc_private)]
#![feature(std_misc)]
-#![feature(unicode)]
-#![feature(unsafe_destructor)]
+#![feature(str_char)]
#![plugin(plugins)]
@@ -28,8 +26,7 @@ extern crate stb_image;
extern crate png;
extern crate profile_traits;
extern crate script_traits;
-extern crate "rustc-serialize" as rustc_serialize;
-extern crate unicode;
+extern crate rustc_serialize;
extern crate net_traits;
#[macro_use]
extern crate util;