Skip to content

Commit

Permalink
chore: alphabetize deps in cargo.toml and make more poly structs public
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Mar 23, 2024
1 parent 5574600 commit 6b26098
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ winter-math = { version = "0.8", default-features = false }
winter-utils = { version = "0.8", default-features = false }

[dev-dependencies]
rand_chacha = { version = "0.3", default-features = false }
criterion = { version = "0.5", features = ["html_reports"] }
getrandom = { version = "0.2", features = ["js"] }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
proptest = "1.4"
rand_utils = { version = "0.8", package = "winter-rand-utils" }
rand_chacha = { version = "0.3", default-features = false }
rand-utils = { version = "0.8", package = "winter-rand-utils" }
seq-macro = { version = "0.3" }

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/dsa/rpo_falcon512/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ mod keys;
mod math;
mod signature;

pub use self::keys::{PubKeyPoly, PublicKey, SecretKey};
pub use self::math::Polynomial;
pub use keys::{PublicKey, SecretKey};
pub use signature::Signature;
pub use self::signature::{Signature, SignatureHeader, SignaturePoly};

// CONSTANTS
// ================================================================================================
Expand Down

0 comments on commit 6b26098

Please sign in to comment.