From 39287b07f87aba15c4cb0f64d7008ba67289151d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 22 Feb 2022 17:02:12 -0500 Subject: another rewrite --- Cargo.toml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 454a226..9f9c202 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,27 +13,21 @@ license = "MIT" include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] -libc = "0.2.112" +libc = "0.2.119" nix = "0.23.1" -async-io = { version = "1.6.0", optional = true } -async-process = { version = "1.3.0", optional = true } -futures-io = { version = "0.3.19", optional = true } +tokio = { version = "1.17.0", features = ["fs", "process", "net"], optional = true } [dev-dependencies] -async-executor = "1.4.1" -async-std = { version = "1.10.0", features = ["unstable"] } -futures = "0.3.19" +futures = "0.3.21" regex = "1.5.4" -smol = "1.2.5" term_size = "0.3.2" -tokio = { version = "1.15.0", features = ["full"] } -tokio-util = { version = "0.6.9", features = ["compat"] } +tokio = { version = "1.17.0", features = ["full"] } [features] default = [] -async = ["async-io", "async-process", "futures-io"] +async = ["tokio"] [patch.crates-io] -async-process = { git = "https://github.com/doy/async-process" } +nix = { path = "../src/nix" } -- cgit v1.2.3-54-g00ecf