Skip to content

Commit

Permalink
pp for signaturescheme should be clonable & clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mrain committed Jan 10, 2024
1 parent e33a739 commit 88b4a72
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/src/signatures/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub trait SignatureScheme: Clone + Send + Sync + 'static {
+ Eq;

/// Public Parameter
type PublicParameter: Debug + PartialEq + for<'a> Deserialize<'a> + Serialize;
type PublicParameter: Debug + Clone + PartialEq + for<'a> Deserialize<'a> + Serialize;

/// Signature
type Signature: Debug
Expand Down
5 changes: 5 additions & 0 deletions relation/src/gadgets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ mod cmp;
mod emulated;
mod logic;
mod range;
#[allow(unused_imports)]
pub use arithmetic::*;
#[allow(unused_imports)]
pub use cmp::*;
#[allow(unused_imports)]
pub use emulated::*;
#[allow(unused_imports)]
pub use logic::*;
#[allow(unused_imports)]
pub use range::*;

// Helper functions
Expand Down
1 change: 1 addition & 0 deletions utilities/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use ark_std::{
};

pub use conversion::*;
#[allow(unused_imports)]
pub use macros::*;
pub use multi_pairing::*;
pub use serialize::*;
Expand Down

0 comments on commit 88b4a72

Please sign in to comment.