From 54e8bf4f2e91407be2054cd38fea81ba830303fd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 6 Aug 2023 18:30:40 -0400 Subject: convert to rustix it seems more maintained, and hopefully this will fix compile issues on macos --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 25e2693..f6c4e07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,12 +14,13 @@ include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] [dependencies] libc = "0.2.147" -nix = "0.26.2" +rustix = { version = "0.38.7", features = ["pty", "process", "fs"] } tokio = { version = "1.29.1", features = ["fs", "process", "net"], optional = true } [dev-dependencies] futures = "0.3.28" +nix = { version = "0.26.2", default-features = false, features = ["signal", "fs", "term", "poll"] } regex = "1.9.3" tokio = { version = "1.29.1", features = ["full"] } -- cgit v1.2.3-54-g00ecf