From eadb1f12ff2a4d99c56fa86fc39c3295bbe51e12 Mon Sep 17 00:00:00 2001 From: WillLillis Date: Mon, 14 Oct 2024 01:32:00 -0400 Subject: [PATCH] allow implicit hasher, remove nightly lint --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c73f688c..6cd0beae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,9 @@ transmute_undefined_repr = "allow" too_many_lines = "allow" unnecessary_wraps = "allow" unused_self = "allow" -used_underscore_items = "allow" +implicit_hasher = "allow" +# Only on nightly for now +# used_underscore_items = "allow" [dependencies] anyhow = "1.0.70"