sp_ark_bls12_377/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![deny(
3    warnings,
4    unused,
5    future_incompatible,
6    nonstandard_style,
7    rust_2018_idioms,
8    unsafe_code
9)]
10#![allow(clippy::result_unit_err)]
11
12pub mod curves;
13
14pub use ark_bls12_377_ext::{
15    fq12, fq2, fr, Fq, Fq12Config, Fq2, Fq2Config, Fq6Config, Fr, FrConfig,
16};
17pub use curves::*;