clippy: Allow unused imports

We can remove this once `pasta_curves` has been updated to remove
`CurveAffine::read`.
This commit is contained in:
Jack Grigg 2021-10-01 13:33:47 +01:00
parent 3fba7434d1
commit b46ef35db5
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,8 @@
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(unsafe_code)]
// Remove this once we update pasta_curves
#![allow(unused_imports)]
pub mod arithmetic;
pub mod circuit;