Skip to content

Commit

Permalink
pin curve25519-dalek for now due to breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Dec 14, 2022
1 parent 8b3e3b1 commit aaa4264
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frost-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ proptest-derive = { version = "0.3", optional = true }
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
curve25519-dalek = { version = "4.0.0-pre.1", features = ["serde"] }
curve25519-dalek = { version = "=4.0.0-pre.1", features = ["serde"] }
lazy_static = "1.4"
proptest = "1.0"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion frost-ed25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description = "A Schnorr signature scheme over the prime-order Ristretto group t
features = ["nightly"]

[dependencies]
curve25519-dalek = { version = "4.0.0-pre.1", features = ["serde"] }
curve25519-dalek = { version = "=4.0.0-pre.1", features = ["serde"] }
frost-core = { path = "../frost-core", features = ["test-impl"] }
frost-ristretto255 = { path = "../frost-ristretto255" }
rand_core = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion frost-ristretto255/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ description = "A Schnorr signature scheme over the prime-order Ristretto group t
features = ["nightly"]

[dependencies]
curve25519-dalek = { version = "4.0.0-pre.1", features = ["serde"] }
curve25519-dalek = { version = "=4.0.0-pre.1", features = ["serde"] }
frost-core = { path = "../frost-core", features = ["test-impl"] }
rand_core = "0.6"
sha2 = "0.10.2"
Expand Down

0 comments on commit aaa4264

Please sign in to comment.