mirror of
https://github.com/logos-storage/circom-compat.git
synced 2026-01-02 13:03:08 +00:00
13 lines
300 B
Rust
13 lines
300 B
Rust
//! Arkworks - Circom Compatibility layer
|
|
//!
|
|
//! Provides bindings to Circom's R1CS, for Groth16 Proof and Witness generation in Rust.
|
|
mod witness;
|
|
|
|
pub mod circom;
|
|
pub use circom::{CircomBuilder, CircomCircuit, CircomConfig, R1CStoQAPCircom};
|
|
|
|
pub mod ethereum;
|
|
|
|
mod zkey;
|
|
pub use zkey::read_zkey;
|