mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 02:03:07 +00:00
13 lines
315 B
Rust
13 lines
315 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)]
|
|
#![no_std]
|
|
|
|
extern crate alloc;
|
|
|
|
pub mod insert_gadget;
|
|
pub mod insertion_gate;
|