From 5b526af7c0d86158bc0bfc7db0e73dea3bc83cfe Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 22 Feb 2021 04:00:53 -0500 Subject: add implementations for async-std and tokio --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index d1673b2..27e5bf1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,3 +8,11 @@ edition = "2018" libc = "*" nix = "0.17" thiserror = "1.0" + +async-process = { version = "1.0", optional = true } +tokio = { version = "1.2", optional = true, features = ["process"] } + +[features] +default = ["std"] + +std = [] -- cgit v1.2.3-54-g00ecf