From 729c6075045a224724e6b2da6e57721b5d48ab12 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Mon, 3 Feb 2025 13:36:27 +0200 Subject: fix(zkvms_host_io): Remove useless template parameter to RunWith --- zkvms_host_io/input_macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zkvms_host_io/input_macros') diff --git a/zkvms_host_io/input_macros/src/lib.rs b/zkvms_host_io/input_macros/src/lib.rs index 9c15102..5e36466 100644 --- a/zkvms_host_io/input_macros/src/lib.rs +++ b/zkvms_host_io/input_macros/src/lib.rs @@ -28,7 +28,7 @@ pub fn generate_output_type_input_struct(_: TokenStream) -> TokenStream { let all_args = args_split(&args); - let mut struct_def = "#[derive(Debug, Serialize, Deserialize)] pub struct Input {".to_string(); + let mut struct_def = "#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct Input {".to_string(); for arg in all_args { struct_def += &format!("pub {arg},"); } -- cgit v1.2.3