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
This commit is contained in:
dbr 2021-03-25 18:20:47 +11:00
parent 6d77b9a319
commit b5b9e63a4f

View file

@ -1,4 +1,5 @@
#![deny(clippy::all)] #![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. This crate implements the command-line interface to TaskChampion.