mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 22:03:07 +00:00
40 lines
796 B
Rust
40 lines
796 B
Rust
#![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)]
|
|
#![feature(stdsimd)]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
|
|
mod inversion;
|
|
|
|
pub(crate) mod arch;
|
|
|
|
pub mod batch_util;
|
|
pub mod cosets;
|
|
pub mod extension;
|
|
pub mod fft;
|
|
pub mod goldilocks_extensions;
|
|
pub mod goldilocks_field;
|
|
pub mod interpolation;
|
|
pub mod ops;
|
|
pub mod packable;
|
|
pub mod packed;
|
|
pub mod polynomial;
|
|
pub mod secp256k1_base;
|
|
pub mod secp256k1_scalar;
|
|
pub mod types;
|
|
pub mod zero_poly_coset;
|
|
|
|
#[cfg(test)]
|
|
mod field_testing;
|
|
|
|
#[cfg(test)]
|
|
mod prime_field_testing;
|