Rename 'stream' feature to 'unstable-stream'

This commit is contained in:
Sean McArthur
2019-09-12 11:16:54 -07:00
parent 06a68a76a2
commit 0527f5b72a
5 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ use http::HeaderMap;
use crate::PollExt;
use std::fmt;
#[cfg(feature = "stream")]
#[cfg(feature = "unstable-stream")]
use std::pin::Pin;
use std::task::{Context, Poll};
@@ -448,7 +448,7 @@ impl RecvStream {
}
}
#[cfg(feature = "stream")]
#[cfg(feature = "unstable-stream")]
impl futures_core::Stream for RecvStream {
type Item = Result<Bytes, crate::Error>;