move IPA-specific methods to the provider (#138)

This commit is contained in:
Srinath Setty
2023-02-06 18:07:14 -08:00
committed by GitHub
parent 0315bd1198
commit b97786d291
7 changed files with 132 additions and 114 deletions

View File

@@ -1,7 +1,15 @@
//! This library implements Nova, a high-speed recursive SNARK.
#![deny(
warnings,
unused,
future_incompatible,
nonstandard_style,
rust_2018_idioms,
missing_docs
)]
#![allow(non_snake_case)]
#![allow(clippy::type_complexity)]
#![deny(missing_docs)]
#![forbid(unsafe_code)]
// private modules
mod bellperson;