2021-12-28 11:51:13 -08:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
#![allow(clippy::new_without_default)]
|
|
|
|
|
#![allow(clippy::too_many_arguments)]
|
|
|
|
|
#![allow(clippy::type_complexity)]
|
|
|
|
|
#![allow(clippy::len_without_is_empty)]
|
|
|
|
|
#![allow(clippy::needless_range_loop)]
|
|
|
|
|
#![allow(clippy::return_self_not_must_use)]
|
|
|
|
|
#![feature(generic_const_exprs)]
|
|
|
|
|
#![feature(specialization)]
|
2022-01-06 09:19:32 -08:00
|
|
|
#![feature(stdsimd)]
|
2021-12-28 11:51:13 -08:00
|
|
|
|
|
|
|
|
pub(crate) mod arch;
|
|
|
|
|
pub mod batch_util;
|
|
|
|
|
pub mod cosets;
|
2022-06-27 07:18:21 -07:00
|
|
|
pub mod extension;
|
2021-12-28 11:51:13 -08:00
|
|
|
pub mod fft;
|
2022-03-04 09:34:31 +11:00
|
|
|
pub mod goldilocks_extensions;
|
2021-12-28 11:51:13 -08:00
|
|
|
pub mod goldilocks_field;
|
|
|
|
|
pub mod interpolation;
|
|
|
|
|
mod inversion;
|
2021-12-30 12:11:02 -08:00
|
|
|
pub mod ops;
|
2021-12-28 11:51:13 -08:00
|
|
|
pub mod packable;
|
|
|
|
|
pub mod packed_field;
|
|
|
|
|
pub mod polynomial;
|
|
|
|
|
pub mod secp256k1_base;
|
|
|
|
|
pub mod secp256k1_scalar;
|
2022-06-27 12:24:09 -07:00
|
|
|
pub mod types;
|
2022-01-26 16:08:04 +01:00
|
|
|
pub mod zero_poly_coset;
|
2021-12-28 11:51:13 -08:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod field_testing;
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod prime_field_testing;
|