diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-02-11 17:24:45 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-02-11 17:24:45 -0700 |
commit | 2cc08f289ab909de44fa09a07b2c43b70ce379b9 (patch) | |
tree | 0c243afe9d7d82695d16bd43d72e88600e4414ef /components/devtools/lib.rs | |
parent | bc6882bdefc318402a46ede1494eb79339705c21 (diff) | |
parent | d5dd1d658e5d79701fb9d028479a0fcb26a033fa (diff) | |
download | servo-2cc08f289ab909de44fa09a07b2c43b70ce379b9.tar.gz servo-2cc08f289ab909de44fa09a07b2c43b70ce379b9.zip |
auto merge of #4893 : servo/servo/rustup_2015-01-31, r=Ms2ger,glennw
Ready for review.
Final link step on android fails, but we know how to fix it and will add it to this branch soon.
Diffstat (limited to 'components/devtools/lib.rs')
-rw-r--r-- | components/devtools/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 6cb8a0747ed..759937c6354 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -10,11 +10,11 @@ #![crate_name = "devtools"] #![crate_type = "rlib"] -#![feature(int_uint, box_syntax)] +#![feature(int_uint, box_syntax, io, core, rustc_private)] +#![feature(collections, std_misc)] #![allow(non_snake_case)] #![allow(missing_copy_implementations)] -#![allow(unstable)] #[macro_use] extern crate log; @@ -45,8 +45,8 @@ use std::cell::RefCell; use std::collections::HashMap; use std::sync::mpsc::{channel, Receiver, Sender}; use std::sync::mpsc::TryRecvError::{Disconnected, Empty}; -use std::io::{TcpListener, TcpStream}; -use std::io::{Acceptor, Listener, TimedOut}; +use std::old_io::{TcpListener, TcpStream}; +use std::old_io::{Acceptor, Listener, TimedOut}; use std::sync::{Arc, Mutex}; use time::precise_time_ns; |