From 4c645866ef4ea5b0ef8c7852281a09b2f96d969b Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Wed, 18 Dec 2019 22:57:22 +0300 Subject: stream: add `next` and `map` utility fn (#1962) Introduces `StreamExt` trait. This trait will be used to add utility functions to make working with streams easier. This patch includes two functions: * `next`: a future returning the item in the stream. * `map`: transform each item in the stream. --- tokio-tls/tests/smoke.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tokio-tls') diff --git a/tokio-tls/tests/smoke.rs b/tokio-tls/tests/smoke.rs index 64dda6ab..a575ba85 100644 --- a/tokio-tls/tests/smoke.rs +++ b/tokio-tls/tests/smoke.rs @@ -3,7 +3,6 @@ use cfg_if::cfg_if; use env_logger; use futures::join; -use futures::stream::StreamExt; use native_tls; use native_tls::{Identity, TlsAcceptor, TlsConnector}; use std::io::Write; @@ -12,6 +11,7 @@ use std::process::Command; use std::ptr; use tokio::io::{AsyncReadExt, AsyncWrite, AsyncWriteExt, Error, ErrorKind}; use tokio::net::{TcpListener, TcpStream}; +use tokio::stream::StreamExt; use tokio_tls; macro_rules! t { -- cgit v1.2.3