Skip to content
Snippets Groups Projects
Verified Commit 713b8598 authored by Wiktor Kwapisiewicz's avatar Wiktor Kwapisiewicz
Browse files

fix(deps): Update `secrecy` to version `0.10.2`

This patch updates secrecy and all call-sites.

Fixes: !79


Signed-off-by: default avatarWiktor Kwapisiewicz <wiktor@metacode.biz>
parent 0d4e2e34
No related branches found
No related tags found
1 merge request!80fix(deps): Update `secrecy` to version `0.10.2`
......@@ -2452,9 +2452,9 @@ dependencies = [
[[package]]
name = "secrecy"
version = "0.8.0"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
checksum = "ba079fa568d52545cd70b334b2ce6f88f62b8fc2bda9290f48a0578388a49331"
dependencies = [
"serde",
"zeroize",
......
......@@ -30,7 +30,7 @@ rand = "0.8.5"
rsa = { version = "0.9.6", features = ["pem"] }
rustls = { version = "0.23.0", default-features = false, features = ["ring"] }
rustls-native-certs = "0.8.0"
secrecy = { version = "0.8.0", features = ["alloc", "serde"] }
secrecy = { version = "0.10.2", features = ["serde"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.112"
sha1 = "0.10.6"
......
......@@ -448,7 +448,7 @@ impl Passphrase {
/// let passphrase = Passphrase::new("passphrase".to_string());
/// ```
pub fn new(passphrase: String) -> Self {
Self(SecretString::new(passphrase))
Self(SecretString::new(passphrase.into()))
}
/// Exposes the secret passphrase as owned [`String`]
......@@ -464,9 +464,7 @@ impl FromStr for Passphrase {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Self(
SecretString::from_str(s).map_err(|_| Error::Passphrase)?,
))
Ok(Self(SecretString::from(s.to_string())))
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment