Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
Merge pull request #19 from dusk-network/version_update
Browse files Browse the repository at this point in the history
Version update
  • Loading branch information
Luke authored Nov 11, 2020
2 parents cfe35a1 + db89b38 commit 7ed7223
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["zer0 <[email protected]>", "Victor Lopez <[email protected]"]
edition = "2018"

[dependencies]
poseidon252 = { git = "https://github.com/dusk-network/Poseidon252", tag = "v0.12.0"}
dusk-jubjub = "0.4"
poseidon252 = { git = "https://github.com/dusk-network/Poseidon252", tag = "v0.13.2"}
dusk-jubjub = "0.5"
canonical = {version = "0.4", optional = true}
canonical_derive = {version = "0.4", optional = true}
hex = "^0.4"
Expand Down
5 changes: 1 addition & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,4 @@ mod spend;
mod sponge;
mod view;

use dusk_jubjub::{
AffinePoint as JubJubAffine, ExtendedPoint as JubJubExtended,
Fr as JubJubScalar,
};
use dusk_jubjub::{JubJubAffine, JubJubExtended, JubJubScalar};
2 changes: 1 addition & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn keys_encoding() -> anyhow::Result<()> {

#[test]
fn keys_consistency() {
use dusk_jubjub::{Fr as JubJubScalar, GENERATOR_EXTENDED};
use dusk_jubjub::{JubJubScalar, GENERATOR_EXTENDED};

let r = JubJubScalar::random(&mut rand::thread_rng());
let ssk = SecretSpendKey::default();
Expand Down

0 comments on commit 7ed7223

Please sign in to comment.