From 0772f19b4d3a33fa714fbcbfbdd8c250dc87e23f Mon Sep 17 00:00:00 2001 From: Milap Sheth Date: Sat, 13 Jul 2024 01:54:26 -0400 Subject: [PATCH 1/2] fix: revert rpassword dep version --- Cargo.lock | 19 ++++--------------- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8453d12b..2fec06d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1426,23 +1426,12 @@ dependencies = [ [[package]] name = "rpassword" -version = "7.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f" -dependencies = [ - "libc", - "rtoolbox", - "windows-sys 0.48.0", -] - -[[package]] -name = "rtoolbox" -version = "0.0.2" +version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e" +checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" dependencies = [ "libc", - "windows-sys 0.48.0", + "winapi", ] [[package]] @@ -1817,7 +1806,7 @@ dependencies = [ [[package]] name = "tofnd" -version = "1.0.0" +version = "1.0.1" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 6b8459eb..97e39f0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tofnd" -version = "1.0.0" +version = "1.0.1" authors = ["Interoplabs Eng "] edition = "2021" license = "MIT OR Apache-2.0" @@ -27,7 +27,7 @@ dirs = { version = "5.0", default-features = false } # kv store encryption chacha20poly1305 = { version = "0.10", features = ["alloc"], default-features = false } rand = { version = "0.8", default-features = false } -rpassword = { version = "7.3", default-features = false } +rpassword = { version = "5.0", default-features = false } # future versions don't support reading both from stdin and tty at the same time scrypt = { version = "0.11", default-features = false, features = ["std"] } # gRPC server From e1eb8664b4fca0eb3fe06459fee1a65089678178 Mon Sep 17 00:00:00 2001 From: Milap Sheth Date: Sat, 13 Jul 2024 02:05:27 -0400 Subject: [PATCH 2/2] fix codeowners --- .github/CODEOWNERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d9104d1d..0306919f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ -* @axelarnetwork/core -* @milapsheth @sdaveas +* @axelarnetwork/core @milapsheth @sdaveas