frontend/
worldcoin_mpc.rs

1//! Contains files responsible for the MPC dealing of Worldcoin's iris code
2
3/// The circuit itself
4pub mod circuits;
5
6/// Components that are particular to the worldcoin circuit
7pub mod components;
8
9/// Data loading and witness generation
10pub mod data;
11
12/// Parameters for the mpc circuit
13pub mod parameters;
14
15/// Tests
16#[cfg(test)]
17pub mod tests;
18
19/// Helper functions for both
20pub mod test_helpers;