sp_ark_bw6_761/
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_bw6_761_ext::{fq, fq::*, fq3, fq3::*, fq6, fq6::*, fr, fr::*};
15pub use curves::*;