From 978a04a84771c7ad5b525bfcc09c7c0b4c7e7659 Mon Sep 17 00:00:00 2001 From: UneBaguette <28904802+UneBaguette@users.noreply.github.com> Date: Sat, 27 Jun 2026 16:21:22 +0200 Subject: [PATCH] chore: fmt --- src/group/elliptic_curve.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/group/elliptic_curve.rs b/src/group/elliptic_curve.rs index 544e9af..ccb3b4f 100644 --- a/src/group/elliptic_curve.rs +++ b/src/group/elliptic_curve.rs @@ -16,7 +16,7 @@ use elliptic_curve::{ AffinePoint, Field, FieldBytes, FieldBytesSize, Group as _, ProjectivePoint, PublicKey, Scalar, SecretKey, }; -use hash2curve::{ExpandMsgXmd, GroupDigest, hash_to_scalar, MapToCurve}; +use hash2curve::{ExpandMsgXmd, GroupDigest, MapToCurve, hash_to_scalar}; use hybrid_array::typenum::{IsGreaterOrEqual, Prod, Sum, True, U2}; use hybrid_array::{Array, ArraySize}; use rand_core::TryCryptoRng;