aboutsummaryrefslogtreecommitdiff
path: root/zkvms_host_io/input_macros/src/lib.rs
diff options
context:
space:
mode:
authorKamen Mladenov <kamen@syndamia.com>2025-02-03 13:36:27 +0200
committerKamen Mladenov <kamen@syndamia.com>2025-02-03 13:36:27 +0200
commit729c6075045a224724e6b2da6e57721b5d48ab12 (patch)
treecfd4773292a349553d3a44da6f5712b1780a9493 /zkvms_host_io/input_macros/src/lib.rs
parentbadcb2c812b92d96925b7430effd1bee1a2c9438 (diff)
downloadzkVMs-benchmarks-729c6075045a224724e6b2da6e57721b5d48ab12.tar
zkVMs-benchmarks-729c6075045a224724e6b2da6e57721b5d48ab12.tar.gz
zkVMs-benchmarks-729c6075045a224724e6b2da6e57721b5d48ab12.zip
fix(zkvms_host_io): Remove useless template parameter to RunWith
Diffstat (limited to 'zkvms_host_io/input_macros/src/lib.rs')
-rw-r--r--zkvms_host_io/input_macros/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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},");
}