From f7dae6f40ad418f3a465c4147e604e2566d94814 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 5 Apr 2024 12:46:02 +0300 Subject: [PATCH] `DefaultHasher` is not in `std::hash` yet in Rust 1.74 --- neqo-common/src/fuzz.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neqo-common/src/fuzz.rs b/neqo-common/src/fuzz.rs index 0c892b4b3f..b5c661415b 100644 --- a/neqo-common/src/fuzz.rs +++ b/neqo-common/src/fuzz.rs @@ -5,8 +5,9 @@ // except according to those terms. use std::{ + collections::hash_map::DefaultHasher, fs::File, - hash::{DefaultHasher, Hash, Hasher}, + hash::{Hash, Hasher}, io::Write, path::Path, };