diff options
author | Roman Melnikov | 2024-02-16 14:49:44 +0100 |
---|---|---|
committer | GitHub | 2024-02-16 14:49:44 +0100 |
commit | 0a0187794ac7f7a1e62cda3dabf8dc041f868790 (patch) | |
tree | 57e0fed6d50a149c6d5c808f671495191977d80d /Cargo.toml | |
parent | 1776009f1f3fb2b5d236b84d9815f2edee463a9b (diff) | |
parent | 5f694ef481610e8c4c77bb963b49e2d3b0d4db3c (diff) |
Merge pull request #257 from n-hass/feature/interactive-sudo
Add support for entering sudo password interactively
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,7 @@ serde = { version = "1.0.104", features = [ "derive" ] } serde_json = "1.0.48" signal-hook = "0.3" thiserror = "1.0" -tokio = { version = "1.9.0", features = [ "process", "macros", "sync", "rt-multi-thread", "fs", "time" ] } +tokio = { version = "1.9.0", features = [ "process", "macros", "sync", "rt-multi-thread", "fs", "time", "io-util" ] } toml = "0.5" whoami = "0.9.0" yn = "0.1" @@ -33,6 +33,7 @@ yn = "0.1" # 1.45.2 (shipped in nixos-20.09); it requires rustc 1.46.0. See # <https://github.com/serokell/deploy-rs/issues/27>: smol_str = "=0.1.16" +rpassword = "7.3.1" [lib] |