From 29c5357b18cfd3e05288f89b16cd9d5c83b4461b Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Mon, 4 Jul 2022 18:46:29 +0200 Subject: [PATCH] Fix error introduced by crypto crate upgrade --- crates/config/src/sections/secrets.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/config/src/sections/secrets.rs b/crates/config/src/sections/secrets.rs index 304caf5a..6a89f9a1 100644 --- a/crates/config/src/sections/secrets.rs +++ b/crates/config/src/sections/secrets.rs @@ -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;