From a17d9587d67127a305a81faba0f083d05501ef71 Mon Sep 17 00:00:00 2001 From: ssrlive <30760636+ssrlive@users.noreply.github.com> Date: Thu, 31 Aug 2023 16:35:37 +0800 Subject: [PATCH] dependencies issues --- Cargo.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d86b722..4422225 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib", "lib"] [dependencies] base64 = { version = "0.21" } -clap = { version = "4.3", features = ["derive"] } +clap = { version = "4.4", features = ["derive"] } ctrlc = "3.4" digest_auth = "0.3" dotenvy = "0.15" @@ -19,7 +19,13 @@ httparse = "1.8" libc = "0.2" log = "0.4" mio = { version = "0.8", features = ["os-poll", "net", "os-ext"] } -nix = { version = "0.27", features = ["process", "signal"] } +nix = { version = "0.27", features = [ + "process", + "signal", + "fs", + "mount", + "user", +] } prctl = "1.0" smoltcp = { version = "0.10", features = ["std", "phy-tuntap_interface"] } socks5-impl = { version = "0.5", default-features = false }