fix clippy errors

This commit is contained in:
Quentin Gliech
2021-07-30 15:36:01 +02:00
parent 0eddd715c8
commit 40aa7fcd01
2 changed files with 2 additions and 1 deletions
@@ -104,5 +104,5 @@ pub fn save_csrf_token<R: Reply, F>(
where
F: Filter<Extract = (CsrfToken, R), Error = Rejection> + Clone + Send + Sync + 'static,
{
save_encrypted("csrf", &cookies_config)
save_encrypted("csrf", cookies_config)
}
@@ -16,6 +16,7 @@
#![deny(clippy::all)]
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::unused_async)]
use anyhow::Context;
use clap::Clap;