Bump to v0.1.3

This commit is contained in:
Stjepan Glavina 2020-08-26 23:27:37 +02:00
parent 60ce358d76
commit 3acf5fcafa
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
# Version 0.1.3
- Update dependencies.
# Version 0.1.2
- Add Unix and Windows extensions.

View File

@ -1,6 +1,6 @@
[package]
name = "async-process"
version = "0.1.2"
version = "0.1.3"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Async interface for working with processes"
@ -15,15 +15,15 @@ readme = "README.md"
[dependencies]
cfg-if = "0.1.10"
event-listener = "2.4.0"
futures-lite = "0.1.11"
futures-lite = "1.0.0"
once_cell = "1.4.1"
[target.'cfg(unix)'.dependencies]
async-io = "0.1.11"
async-io = "0.2.0"
signal-hook = { version = "0.1.16", default-features = false }
[target.'cfg(windows)'.dependencies]
blocking = "0.5.1"
blocking = "0.6.0"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"

View File

@ -410,7 +410,7 @@ impl Child {
};
async move {
let (stdout, stderr) = future::try_join(stdout, stderr).await?;
let (stdout, stderr) = future::try_zip(stdout, stderr).await?;
let status = status.await?;
Ok(Output {
status,