1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(unused, future_incompatible, nonstandard_style, rust_2018_idioms)]
#![allow(clippy::op_ref, clippy::suspicious_op_assign_impl)]
#![cfg_attr(not(feature = "asm"), forbid(unsafe_code))]
#![cfg_attr(use_asm, feature(llvm_asm))]
#![cfg_attr(feature = "asm", deny(unsafe_code))]
#[macro_use]
extern crate ark_std;
#[macro_use]
extern crate derivative;
#[cfg_attr(test, macro_use)]
pub mod bytes;
pub use self::bytes::*;
#[macro_use]
pub mod biginteger;
pub use self::biginteger::*;
#[macro_use]
pub mod fields;
pub use self::fields::*;
#[cfg(test)]
mod test_field;
pub use ark_std::UniformRand;
mod to_field_vec;
pub use to_field_vec::ToConstraintField;
pub use num_traits::{One, Zero};
pub use ark_std::vec;
pub mod prelude {
pub use crate::biginteger::BigInteger;
pub use crate::fields::{Field, FpParameters, PrimeField, SquareRootField};
pub use ark_std::UniformRand;
pub use num_traits::{One, Zero};
}
fn error(msg: &'static str) -> ark_std::io::Error {
ark_std::io::Error::new(ark_std::io::ErrorKind::Other, msg)
}