Deps: Bump xsalsa20poly1305 version -> 0.7

This dependency upgrade (at last) resolves the duplicated rand_core versions present in builds. This was tested using `cargo make ready`.
This commit is contained in:
Kyle Simpson
2021-05-10 17:42:27 +01:00
parent 3c9b421fb4
commit 94c57f4ab5
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ features = ["v4"]
[dependencies.xsalsa20poly1305] [dependencies.xsalsa20poly1305]
optional = true optional = true
version = "0.6" version = "0.7"
[dev-dependencies] [dev-dependencies]
criterion = "0.3" criterion = "0.3"

View File

@@ -319,7 +319,7 @@ async fn init_cipher(client: &mut WsStream, mode: CryptoMode) -> Result<Cipher>
return Err(Error::CryptoModeInvalid); return Err(Error::CryptoModeInvalid);
} }
return Ok(Cipher::new_varkey(&desc.secret_key)?); return Ok(Cipher::new_from_slice(&desc.secret_key)?);
}, },
other => { other => {
debug!( debug!(