Bump rpassword from 5.0.1 to 7.0.0 (#11826)

* Bump rpassword from 5.0.1 to 7.0.0

Bumps [rpassword](https://github.com/conradkleinespel/rpassword) from 5.0.1 to 7.0.0.
- [Release notes](https://github.com/conradkleinespel/rpassword/releases)
- [Commits](https://github.com/conradkleinespel/rpassword/compare/v5.0.1...v7.0.0)

---
updated-dependencies:
- dependency-name: rpassword
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Use new API

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* fmt

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
dependabot[bot]
2022-08-15 07:57:15 +00:00
committed by GitHub
parent d987d2b413
commit 9c2a2495fe
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ pub fn read_uri(uri: Option<&String>) -> error::Result<String> {
uri.into()
}
} else {
rpassword::read_password_from_tty(Some("URI: "))?
rpassword::prompt_password("URI: ")?
};
Ok(uri)
@@ -94,7 +94,7 @@ impl KeystoreParams {
let (password_interactive, password) = (self.password_interactive, self.password.clone());
let pass = if password_interactive {
let password = rpassword::read_password_from_tty(Some("Key password: "))?;
let password = rpassword::prompt_password("Key password: ")?;
Some(SecretString::new(password))
} else {
password
@@ -105,6 +105,5 @@ impl KeystoreParams {
}
fn input_keystore_password() -> Result<String> {
rpassword::read_password_from_tty(Some("Keystore password: "))
.map_err(|e| format!("{:?}", e).into())
rpassword::prompt_password("Keystore password: ").map_err(|e| format!("{:?}", e).into())
}