From 4d447102618d71ec41e023c167d4dc9098aad5d7 Mon Sep 17 00:00:00 2001 From: l1npengtul Date: Sat, 8 Feb 2025 12:33:25 +0900 Subject: [PATCH] remove hasher import --- nokhwa-core/src/control.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nokhwa-core/src/control.rs b/nokhwa-core/src/control.rs index e32bbe0..77f77a5 100644 --- a/nokhwa-core/src/control.rs +++ b/nokhwa-core/src/control.rs @@ -4,7 +4,7 @@ use ordered_float::OrderedFloat; use std::collections::hash_map::{Keys, Values}; use std::collections::{HashMap, HashSet}; use std::fmt::{Display, Formatter}; -use std::hash::{Hash, Hasher}; +use std::hash::Hash; pub type PlatformSpecificControlId = u64;