Skip to content

Commit

Permalink
chore: re-export Stream
Browse files Browse the repository at this point in the history
  • Loading branch information
kkharji committed May 21, 2022
1 parent 87b3b6a commit e4a924c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 "]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#![deny(rustdoc::broken_intra_doc_links)]

use async_stream::stream;
use futures::Stream;
use io::Result;
use std::{
ffi::OsStr,
Expand All @@ -24,6 +23,7 @@ use {
};

mod item;
pub use futures::Stream;
pub use futures::StreamExt;
pub use futures::TryStreamExt;
pub use item::ProcessItem;
Expand Down

0 comments on commit e4a924c

Please sign in to comment.