From b5b9e63a4ff615808bf59c1f83c0bd9fc30d4a18 Mon Sep 17 00:00:00 2001 From: dbr Date: Thu, 25 Mar 2021 18:20:47 +1100 Subject: [PATCH] Disable "unnecessary_wraps" linter as it is almost entirely false-positives Was added in 1.50 and will be reduced in severity in next release as per https://github.com/rust-lang/rust-clippy/pull/6765 --- cli/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/lib.rs b/cli/src/lib.rs index 29b3f8afc..e71dcc024 100644 --- a/cli/src/lib.rs +++ b/cli/src/lib.rs @@ -1,4 +1,5 @@ #![deny(clippy::all)] +#![allow(clippy::unnecessary_wraps)] // for Rust 1.50, https://github.com/rust-lang/rust-clippy/pull/6765 /*! This crate implements the command-line interface to TaskChampion.