From 6cc83dbb673a43a010b0f98bb551ea9d80d58362 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 27 Feb 2020 12:45:11 +0900 Subject: [PATCH] Allow clippy lint for compatibility --- actix-http/src/h1/dispatcher.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actix-http/src/h1/dispatcher.rs b/actix-http/src/h1/dispatcher.rs index acbb09960..6276653d3 100644 --- a/actix-http/src/h1/dispatcher.rs +++ b/actix-http/src/h1/dispatcher.rs @@ -1,3 +1,6 @@ +// Because MSRV is 1.39.0. +#![allow(clippy::mem_replace_with_default)] + use std::collections::VecDeque; use std::future::Future; use std::pin::Pin;