Removed unused_mut rejection and fix some unused `mut`s
authorMatt Corallo <git@bluematt.me>
Mon, 5 Jun 2023 23:26:38 +0000 (23:26 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 5 Jun 2023 23:26:38 +0000 (23:26 +0000)
commit5a5acfe0cd6b1e5ebc7cd2923ee3a75fb9c9a52c
treeaf5401be16d62997f0b72cf5f2460c30435b957e
parent24f36757a9cd33384b6ec13ea254ce11f8bb6590
Removed unused_mut rejection and fix some unused `mut`s

Making warnings a hard failure is generally bad practice as it can
result in new compiler versions failing to compile
otherwise-totally-acceptable code, which in this case is happening
on rustc beta, which is now warning for new cases of unused mut.
src/lib.rs
src/lookup.rs