Skip to content

Commit

Permalink
fix(rustup): update feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
renato-zannon authored and seanmonstar committed Feb 21, 2015
1 parent fc2076c commit b47f936
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion benches/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(core, io, test)]
#![feature(core, old_io, test)]
extern crate hyper;

extern crate test;
Expand Down
2 changes: 1 addition & 1 deletion benches/client_mock_tcp.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(collections, io, test)]
#![feature(collections, old_io, test)]
extern crate hyper;

extern crate test;
Expand Down
2 changes: 1 addition & 1 deletion benches/server.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(io, test)]
#![feature(old_io, test)]
extern crate hyper;
extern crate test;

Expand Down
2 changes: 1 addition & 1 deletion examples/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(env, io)]
#![feature(env, old_io)]
extern crate hyper;

use std::env;
Expand Down
2 changes: 1 addition & 1 deletion examples/hello.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(io)]
#![feature(old_io)]
extern crate hyper;

use std::old_io::net::ip::Ipv4Addr;
Expand Down
2 changes: 1 addition & 1 deletion examples/server.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(io)]
#![feature(old_io)]
extern crate hyper;
#[macro_use] extern crate log;

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![feature(core, collections, hash, io, os, path, std_misc,
slicing_syntax, box_syntax, unsafe_destructor)]
#![feature(core, collections, hash, io, old_io, os, old_path,
std_misc, box_syntax, unsafe_destructor)]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(test, feature(alloc, test))]
Expand Down

0 comments on commit b47f936

Please sign in to comment.