Skip to content

Commit

Permalink
Merge pull request #415 from hyperium/feat-alloc
Browse files Browse the repository at this point in the history
chore(features): remove feature gate 'alloc'
  • Loading branch information
seanmonstar committed Apr 1, 2015
2 parents dc55ecf + dd5ee43 commit eeba13b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/client/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ impl Write for Request<Streaming> {

#[cfg(test)]
mod tests {
use std::boxed::BoxAny;
use std::str::from_utf8;
use url::Url;
use method::Method::{Get, Head};
Expand Down
1 change: 0 additions & 1 deletion src/client/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ impl Read for Response {
#[cfg(test)]
mod tests {
use std::borrow::Cow::Borrowed;
use std::boxed::BoxAny;
use std::io::{self, Read};
use std::marker::PhantomData;

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![feature(core, io, unsafe_destructor, into_cow, convert)]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(test, feature(alloc, test))]
#![cfg_attr(test, feature(test))]

//! # Hyper
//! Hyper is a fast, modern HTTP implementation written in and for Rust. It
Expand Down

0 comments on commit eeba13b

Please sign in to comment.