From e61ac1065689b000a838fff69664e03856507d39 Mon Sep 17 00:00:00 2001 From: radl97 Date: Wed, 15 Feb 2023 12:39:23 +0100 Subject: [PATCH] Fix StdErrObserver not implementing needed traits (#1072) --- libafl/src/observers/stdio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/observers/stdio.rs b/libafl/src/observers/stdio.rs index 6f585b1abc..bcc893dddb 100644 --- a/libafl/src/observers/stdio.rs +++ b/libafl/src/observers/stdio.rs @@ -51,7 +51,7 @@ impl Named for StdOutObserver { /// An observer that captures stderr of a target. /// Only works for supported executors. -#[derive(Debug, Clone, PartialEq, Eq, Hash)] +#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)] pub struct StdErrObserver { /// The name of the observer. pub name: String,