ark_relations/
lib.rs

1//! Core interface for working with various relations that are useful in
2//! zkSNARKs. At the moment, we only implement APIs for working with Rank-1
3//! Constraint Systems (R1CS).
4
5#![cfg_attr(not(feature = "std"), no_std)]
6#![warn(
7    unused,
8    future_incompatible,
9    nonstandard_style,
10    rust_2018_idioms,
11    missing_docs
12)]
13#![deny(unsafe_code)]
14
15#[macro_use]
16extern crate ark_std;
17
18pub mod r1cs;