summaryrefslogtreecommitdiff
path: root/clippy.toml
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-10-17 15:03:43 +0200
committermo8it <mo8it@proton.me>2024-10-17 15:03:43 +0200
commit7e2f56f41a89213d3ae60a069402a25b570f0cca (patch)
treed10a0d1f54311edda5bea57644f929152e8e7dd2 /clippy.toml
parente90f5f03f3da639bf3157aec12ebf0cec62ac7ae (diff)
Use the default hasher
Diffstat (limited to 'clippy.toml')
-rw-r--r--clippy.toml3
1 files changed, 0 insertions, 3 deletions
diff --git a/clippy.toml b/clippy.toml
index 2a98184..afc9253 100644
--- a/clippy.toml
+++ b/clippy.toml
@@ -5,9 +5,6 @@ disallowed-types = [
]
disallowed-methods = [
- # We use `foldhash` instead of the default hasher.
- "std::collections::HashSet::new",
- "std::collections::HashSet::with_capacity",
# Inefficient. Use `.queue(…)` instead.
"crossterm::style::style",
# Use `thread::Builder::spawn` instead and handle the error.