From 5035ad2002229813f060a25af241733419d3a7ef Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Wed, 7 Feb 2024 19:41:11 -0300 Subject: [PATCH] unpin curve25519-dalek --- frost-ed25519/Cargo.toml | 2 +- frost-ristretto255/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frost-ed25519/Cargo.toml b/frost-ed25519/Cargo.toml index 86832f7..7f611e1 100644 --- a/frost-ed25519/Cargo.toml +++ b/frost-ed25519/Cargo.toml @@ -23,7 +23,7 @@ features = ["serde"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -curve25519-dalek = { version = "=4.1.1", features = ["rand_core"] } +curve25519-dalek = { version = "4.1.2", features = ["rand_core"] } document-features = "0.2.7" frost-core = { path = "../frost-core", version = "1.0.0-rc.0" } frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0-rc.0" } diff --git a/frost-ristretto255/Cargo.toml b/frost-ristretto255/Cargo.toml index 38c8df1..64987dd 100644 --- a/frost-ristretto255/Cargo.toml +++ b/frost-ristretto255/Cargo.toml @@ -19,7 +19,7 @@ features = ["serde"] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -curve25519-dalek = { version = "=4.1.1", features = ["serde", "rand_core"] } +curve25519-dalek = { version = "4.1.2", features = ["serde", "rand_core"] } document-features = "0.2.7" frost-core = { path = "../frost-core", version = "1.0.0-rc.0" } frost-rerandomized = { path = "../frost-rerandomized", version = "1.0.0-rc.0" }