From 3778841d8f3cc91d6de75801ad3262e60f87cfba Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Fri, 10 May 2024 09:53:57 -0500 Subject: [PATCH] Address review comments --- applications/minotari_ledger_wallet/rust-toolchain.toml | 2 +- lints.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/minotari_ledger_wallet/rust-toolchain.toml b/applications/minotari_ledger_wallet/rust-toolchain.toml index 7b485b0e3a..c3f39c4aa7 100644 --- a/applications/minotari_ledger_wallet/rust-toolchain.toml +++ b/applications/minotari_ledger_wallet/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2023-05-17" +channel = "nightly-2024-03-01" diff --git a/lints.toml b/lints.toml index 9b37a15a3e..cb44026f34 100644 --- a/lints.toml +++ b/lints.toml @@ -15,6 +15,7 @@ deny = [ # Common mistakes 'clippy::await_holding_lock', 'unused_variables', + 'unused_imports', 'dead_code', 'unused_extern_crates', 'unused_must_use', @@ -69,5 +70,4 @@ allow = [ # `assert!(!foo(bar))` is misread the majority of the time, while `assert_eq!(foo(bar), false)` is crystal clear 'clippy::bool-assert-comparison', 'clippy::blocks_in_conditions', - 'unused_imports', # TODO: DENY THIS ]