November 2022 - Rust Nightly Update (#144)

* Update nightly

* Have the latest nightly clippy pass

Co-authored-by: GitHub Actions <>
Co-authored-by: Luke Parker <lukeparker5132@gmail.com>
This commit is contained in:
github-actions[bot]
2022-11-01 00:03:36 -05:00
committed by GitHub
parent 5df74ac9e2
commit 8e53522780
5 changed files with 6 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ pub trait Curve: Ciphersuite {
/// Hash the given dst and data to a byte vector. Used to instantiate H4 and H5.
fn hash_to_vec(dst: &[u8], data: &[u8]) -> Vec<u8> {
Self::H::digest(&[Self::CONTEXT, dst, data].concat()).as_ref().to_vec()
Self::H::digest([Self::CONTEXT, dst, data].concat()).as_ref().to_vec()
}
/// Field element from hash. Used during key gen and by other crates under Serai as a general