mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-10 01:33:07 +00:00
12 lines
304 B
Rust
12 lines
304 B
Rust
#![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)]
|
|
|
|
pub mod bimap;
|
|
pub mod gates;
|
|
pub mod permutation;
|
|
pub mod sorting;
|