diff --git a/src/collections/vec.rs b/src/collections/vec.rs index 40d5086..d8371b4 100644 --- a/src/collections/vec.rs +++ b/src/collections/vec.rs @@ -5,7 +5,7 @@ //! //! [std::vec]: https://doc.rust-lang.org/stable/std/vec/use core::future::Ready; -use crate::concurrent_stream::{self, ConcurrentStream, FromStream}; +use crate::concurrent_stream::{self, FromStream}; use crate::prelude::*; use crate::utils::{from_iter, FromIter}; #[cfg(all(feature = "alloc", not(feature = "std")))] diff --git a/src/concurrent_stream/from_stream.rs b/src/concurrent_stream/from_stream.rs index 4ec60b8..38f7341 100644 --- a/src/concurrent_stream/from_stream.rs +++ b/src/concurrent_stream/from_stream.rs @@ -1,4 +1,4 @@ -use super::{ConcurrentStream, Consumer}; +use super::Consumer; use crate::concurrent_stream::ConsumerState; use crate::prelude::*;