@@ -12,28 +12,28 @@ use crate::Felt252;
12
12
// Serializable format, matches the file output of the python implementation
13
13
#[ derive( Serialize , Deserialize , Clone , Debug , PartialEq , Eq ) ]
14
14
pub struct AirPrivateInputSerializable {
15
- trace_path : String ,
16
- memory_path : String ,
15
+ pub trace_path : String ,
16
+ pub memory_path : String ,
17
17
#[ serde( skip_serializing_if = "Option::is_none" ) ]
18
- pedersen : Option < Vec < PrivateInput > > ,
18
+ pub pedersen : Option < Vec < PrivateInput > > ,
19
19
#[ serde( skip_serializing_if = "Option::is_none" ) ]
20
- range_check : Option < Vec < PrivateInput > > ,
20
+ pub range_check : Option < Vec < PrivateInput > > ,
21
21
#[ serde( skip_serializing_if = "Option::is_none" ) ]
22
- range_check96 : Option < Vec < PrivateInput > > ,
22
+ pub range_check96 : Option < Vec < PrivateInput > > ,
23
23
#[ serde( skip_serializing_if = "Option::is_none" ) ]
24
- ecdsa : Option < Vec < PrivateInput > > ,
24
+ pub ecdsa : Option < Vec < PrivateInput > > ,
25
25
#[ serde( skip_serializing_if = "Option::is_none" ) ]
26
- bitwise : Option < Vec < PrivateInput > > ,
26
+ pub bitwise : Option < Vec < PrivateInput > > ,
27
27
#[ serde( skip_serializing_if = "Option::is_none" ) ]
28
- ec_op : Option < Vec < PrivateInput > > ,
28
+ pub ec_op : Option < Vec < PrivateInput > > ,
29
29
#[ serde( skip_serializing_if = "Option::is_none" ) ]
30
- keccak : Option < Vec < PrivateInput > > ,
30
+ pub keccak : Option < Vec < PrivateInput > > ,
31
31
#[ serde( skip_serializing_if = "Option::is_none" ) ]
32
- poseidon : Option < Vec < PrivateInput > > ,
32
+ pub poseidon : Option < Vec < PrivateInput > > ,
33
33
#[ serde( skip_serializing_if = "Option::is_none" ) ]
34
- add_mod : Option < PrivateInput > ,
34
+ pub add_mod : Option < PrivateInput > ,
35
35
#[ serde( skip_serializing_if = "Option::is_none" ) ]
36
- mul_mod : Option < PrivateInput > ,
36
+ pub mul_mod : Option < PrivateInput > ,
37
37
}
38
38
39
39
// Contains only builtin public inputs, useful for library users
0 commit comments