Add unnecessary imports to the Ed448 backend to enable publishing

Doesn't change dependencies.
This commit is contained in:
Luke Parker 2022-08-29 03:49:40 -04:00
parent d6a31863c4
commit b97713aac7
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

View file

@ -13,6 +13,9 @@ macro_rules! field {
use ff::{Field, PrimeField, FieldBits, PrimeFieldBits};
// Needed to publish for some reason? Yet not actually needed
#[allow(unused_imports)]
use dalek_ff_group::{from_wrapper, math_op};
use dalek_ff_group::{constant_time, from_uint, math};
fn reduce(x: U1024) -> U512 {