mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-05-02 00:03:13 +00:00
11 lines
289 B
Rust
11 lines
289 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 permutation;
|
||
|
|
pub mod sorting;
|