13 lines
300 B
Rust
Raw Normal View History

2021-07-26 12:45:07 +03:00
//! Arkworks - Circom Compatibility layer
//!
2021-07-26 17:59:11 +03:00
//! Provides bindings to Circom's R1CS, for Groth16 Proof and Witness generation in Rust.
2021-07-26 17:53:45 +03:00
mod witness;
2021-07-26 12:45:07 +03:00
2021-07-26 17:53:45 +03:00
pub mod circom;
pub use circom::{CircomBuilder, CircomCircuit, CircomConfig, R1CStoQAPCircom};
2021-07-26 12:45:07 +03:00
pub mod ethereum;
2021-07-26 17:53:45 +03:00
mod zkey;
pub use zkey::read_zkey;