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