diff --git a/Cargo.toml b/Cargo.toml index dbdc18f..3935898 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "process-stream" -version = "0.1.1" +version = "0.1.3" edition = "2021" description = "Thin wrapper around [`tokio::process`] to make it streamable" authors = ["tami5 "] diff --git a/README.md b/README.md index 6d5b3fa..c2453e8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Wraps `tokio::process::Command` to `future::stream`. ## Install ```toml -process-stream = "0.1.0" +process-stream = "0.1.3" ``` ## Example usage: diff --git a/src/lib.rs b/src/lib.rs index a805c89..a5b0c78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ #![deny(rustdoc::broken_intra_doc_links)] use async_stream::stream; -use futures::Stream; use io::Result; use std::{ ffi::OsStr, @@ -24,6 +23,7 @@ use { }; mod item; +pub use futures::Stream; pub use futures::StreamExt; pub use futures::TryStreamExt; pub use item::ProcessItem;