plonky2/ecdsa/src/lib.rs

8 lines
238 B
Rust
Raw Normal View History

2022-03-16 05:39:45 +01:00
#![allow(clippy::needless_range_loop)]
2022-06-02 14:04:34 -07:00
// Below lint is currently broken and produces false positives.
// TODO: Remove this override when Clippy is patched.
#![allow(clippy::derive_partial_eq_without_eq)]
2022-03-16 05:39:45 +01:00
pub mod curve;
pub mod gadgets;