From 9c96ce04a8725f159e473a4990fe16c83ad2fad6 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Thu, 6 Feb 2025 15:14:15 +0200 Subject: feat(zkvms/zkwasm): Support all std containers as input types --- zkvms_host_io/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zkvms_host_io') diff --git a/zkvms_host_io/src/lib.rs b/zkvms_host_io/src/lib.rs index abf9edf..7090023 100644 --- a/zkvms_host_io/src/lib.rs +++ b/zkvms_host_io/src/lib.rs @@ -2,7 +2,7 @@ use clap::{Parser, ValueEnum}; use num_traits::NumCast; use serde::{ Serialize, Deserialize }; use env_file_reader::read_str; -use std::{env, option::Option, fs::read_to_string, collections::HashMap}; +use std::{env, option::Option, fs::read_to_string, collections::*}; pub use input_macros::{ foreach_input_field, foreach_public_input_field, foreach_private_input_field }; static DEFAULT_PUBLIC_INPUT: &str = include_str!(concat!(env!("INPUTS_DIR"), "/default_public_input.toml")); -- cgit v1.2.3