From a2388d4400bb2938d3142dd21170ee3220f6feb4 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Fri, 10 Jun 2022 15:24:31 +0200 Subject: [PATCH] Remove Hash bound in Input trait (#670) --- libafl/src/inputs/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/inputs/mod.rs b/libafl/src/inputs/mod.rs index 40f9d486ee..3a254b8e2d 100644 --- a/libafl/src/inputs/mod.rs +++ b/libafl/src/inputs/mod.rs @@ -52,7 +52,7 @@ pub trait Input: Clone + Serialize + serde::de::DeserializeOwned + Debug { /// An input for the target #[cfg(feature = "std")] -pub trait Input: Clone + Serialize + serde::de::DeserializeOwned + Debug + Hash { +pub trait Input: Clone + Serialize + serde::de::DeserializeOwned + Debug { /// Write this input to the file fn to_file

(&self, path: P) -> Result<(), Error> where