diff options
author | Nadrieril | 2021-03-09 23:04:50 +0000 |
---|---|---|
committer | Nadrieril | 2021-03-09 23:04:50 +0000 |
commit | f107bd530562877a37e23425aa8c5f662ee73185 (patch) | |
tree | 5a7a8c8ddde9490057f7715db14452980ee4b6cf | |
parent | 9138e0fae758d4beb2188d03fbafaa1893e497f5 (diff) |
chore: fix clippy warnings
-rw-r--r-- | dhall/src/lib.rs | 1 | ||||
-rw-r--r-- | dhall_proc_macros/src/lib.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index 68d1066..86ef99e 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -6,6 +6,7 @@ clippy::new_ret_no_self, clippy::new_without_default, clippy::try_err, + clippy::unnecessary_wraps, clippy::useless_format )] diff --git a/dhall_proc_macros/src/lib.rs b/dhall_proc_macros/src/lib.rs index 9f20e2d..91595cd 100644 --- a/dhall_proc_macros/src/lib.rs +++ b/dhall_proc_macros/src/lib.rs @@ -1,4 +1,5 @@ #![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.5.0")] +#![allow(clippy::unnecessary_wraps)] //! This crate contains the code-generation primitives for the [dhall-rust][dhall-rust] crate. //! This is highly unstable and breaks regularly; use at your own risk. //! |