Skip to content

Commit b47f936

Browse files
renato-zannonseanmonstar
authored andcommitted
fix(rustup): update feature flags
1 parent fc2076c commit b47f936

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

benches/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(core, io, test)]
1+
#![feature(core, old_io, test)]
22
extern crate hyper;
33

44
extern crate test;

benches/client_mock_tcp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(collections, io, test)]
1+
#![feature(collections, old_io, test)]
22
extern crate hyper;
33

44
extern crate test;

benches/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(io, test)]
1+
#![feature(old_io, test)]
22
extern crate hyper;
33
extern crate test;
44

examples/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(env, io)]
1+
#![feature(env, old_io)]
22
extern crate hyper;
33

44
use std::env;

examples/hello.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(io)]
1+
#![feature(old_io)]
22
extern crate hyper;
33

44
use std::old_io::net::ip::Ipv4Addr;

examples/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(io)]
1+
#![feature(old_io)]
22
extern crate hyper;
33
#[macro_use] extern crate log;
44

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#![feature(core, collections, hash, io, os, path, std_misc,
2-
slicing_syntax, box_syntax, unsafe_destructor)]
1+
#![feature(core, collections, hash, io, old_io, os, old_path,
2+
std_misc, box_syntax, unsafe_destructor)]
33
#![deny(missing_docs)]
44
#![cfg_attr(test, deny(warnings))]
55
#![cfg_attr(test, feature(alloc, test))]

0 commit comments

Comments
 (0)