From 7aabb55de57543f1d9c3aa0003285f25349d6d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Wed, 16 Oct 2019 16:46:55 -0400 Subject: [PATCH] misc: remove unneeded clippy exception --- src/content/read.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/content/read.rs b/src/content/read.rs index 2e39160..95f46ae 100644 --- a/src/content/read.rs +++ b/src/content/read.rs @@ -59,7 +59,6 @@ pub fn open(cache: &Path, sri: Integrity) -> Result { }) } -#[allow(clippy::needless_lifetimes)] pub async fn open_async(cache: &Path, sri: Integrity) -> Result { Ok(AsyncReader { fd: async_std::fs::File::open(cache).await?,