From b663519ef6e93e197a463c585a3d92e969520e23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Feb 2023 02:57:55 +0000 Subject: [PATCH] Bump rpassword from 5.0.1 to 7.2.0 Bumps [rpassword](https://github.com/conradkleinespel/rpassword) from 5.0.1 to 7.2.0. - [Release notes](https://github.com/conradkleinespel/rpassword/releases) - [Commits](https://github.com/conradkleinespel/rpassword/compare/v5.0.1...v7.2.0) --- updated-dependencies: - dependency-name: rpassword dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++++-- bin/token-ops/Cargo.toml | 2 +- raiden/client/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92deb15..c1b94cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2856,9 +2856,20 @@ dependencies = [ [[package]] name = "rpassword" -version = "5.0.1" +version = "7.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" +checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322" +dependencies = [ + "libc", + "rtoolbox", + "winapi", +] + +[[package]] +name = "rtoolbox" +version = "0.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a" dependencies = [ "libc", "winapi", diff --git a/bin/token-ops/Cargo.toml b/bin/token-ops/Cargo.toml index bc45b1e..3b5831a 100644 --- a/bin/token-ops/Cargo.toml +++ b/bin/token-ops/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" [dependencies] # 3rd Party -rpassword = { version = "5.0.1", default-features = false } +rpassword = { version = "7.2.0", default-features = false } structopt = { version = "0.3.25", default-features = false } tokio = { version = "1.0", default-features = false, features = [ "macros" ] } web3 = { version = "0.18.0", default-features = false, features = [ "http", "signing", "ws-tls-tokio" ] } diff --git a/raiden/client/Cargo.toml b/raiden/client/Cargo.toml index 7bfdd4f..87f45f3 100644 --- a/raiden/client/Cargo.toml +++ b/raiden/client/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.59" # 3rd-Party ethsign = { version = "0.8.0" } futures = { version = "0.3.21", default-features = false } -rpassword = { version = "5.0.1", default-features = false } +rpassword = { version = "7.2.0", default-features = false } serde_json = { version = "1.0.59", default-features = false } tracing = { version = "0.1.37", default-features = false } web3 = { version = "0.18.0", default-features = false, features = ["signing"] }