diff options
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r-- | components/devtools_traits/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index 2a3da461ab0..209b29d6ec5 100644 --- a/components/devtools_traits/lib.rs +++ b/components/devtools_traits/lib.rs @@ -10,6 +10,7 @@ #![crate_type = "rlib"] #![feature(int_uint)] +#![feature(net)] #![allow(non_snake_case)] @@ -23,7 +24,7 @@ use msg::constellation_msg::PipelineId; use util::str::DOMString; use url::Url; -use std::old_io::TcpStream; +use std::net::TcpStream; use std::sync::mpsc::{Sender, Receiver}; pub type DevtoolsControlChan = Sender<DevtoolsControlMsg>; |