summaryrefslogtreecommitdiffstats
path: root/tokio/src/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/stream.rs')
-rw-r--r--tokio/src/stream.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tokio/src/stream.rs b/tokio/src/stream.rs
index e4f5a1b1..0a597a58 100644
--- a/tokio/src/stream.rs
+++ b/tokio/src/stream.rs
@@ -1,10 +1,10 @@
//! A sequence of asynchronous values.
-#[cfg(feature = "timer")]
+#[cfg(feature = "time")]
use std::time::Duration;
-#[cfg(feature = "timer")]
-use crate::timer::{throttle::Throttle, Timeout};
+#[cfg(feature = "time")]
+use crate::time::{throttle::Throttle, Timeout};
#[doc(inline)]
pub use futures_core::Stream;
@@ -29,7 +29,7 @@ pub trait StreamExt: Stream {
/// Throttle down the stream by enforcing a fixed delay between items.
///
/// Errors are also delayed.
- #[cfg(feature = "timer")]
+ #[cfg(feature = "time")]
fn throttle(self, duration: Duration) -> Throttle<Self>
where
Self: Sized,
@@ -66,7 +66,7 @@ pub trait StreamExt: Stream {
/// }
/// # }
/// ```
- #[cfg(feature = "timer")]
+ #[cfg(feature = "time")]
fn timeout(self, timeout: Duration) -> Timeout<Self>
where
Self: Sized,