From 765f559de1edcc4935c3e3f7bd10553ec1641132 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Mon, 3 Feb 2025 17:41:34 +0200 Subject: feat(zkvms_host_io): Implement foreach_private_input_field and foreach_public_input_field macros --- zkvms_host_io/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zkvms_host_io/src') diff --git a/zkvms_host_io/src/lib.rs b/zkvms_host_io/src/lib.rs index 2624352..abf9edf 100644 --- a/zkvms_host_io/src/lib.rs +++ b/zkvms_host_io/src/lib.rs @@ -3,7 +3,7 @@ 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}; -pub use input_macros::foreach_input_field; +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")); static DEFAULT_PRIVATE_INPUT: &str = include_str!(concat!(env!("INPUTS_DIR"), "/default_private_input.toml")); -- cgit v1.2.3