1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Fix error introduced by crypto crate upgrade

This commit is contained in:
Quentin Gliech
2022-07-04 18:46:29 +02:00
parent ba90ee2614
commit 29c5357b18

View File

@ -17,8 +17,8 @@ use std::{path::PathBuf, sync::Arc};
use anyhow::Context;
use async_trait::async_trait;
use chacha20poly1305::{
aead::{generic_array::GenericArray, Aead, NewAead},
ChaCha20Poly1305,
aead::{generic_array::GenericArray, Aead},
ChaCha20Poly1305, KeyInit,
};
use cookie::Key;
use data_encoding::BASE64;