From 39296e6e7dd7ef25f96244bcf4fed7739ad2233c Mon Sep 17 00:00:00 2001 From: Ahmad Date: Wed, 27 Nov 2024 11:22:22 +1000 Subject: [PATCH] Derive Eq trait for Point --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4310e24..640492d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -148,7 +148,7 @@ impl PointProjective { } } -#[derive(Clone, Debug)] +#[derive(Clone, Debug, PartialEq, Eq)] pub struct Point { pub x: Fq, pub y: Fq,