From e67e406d959db823b3d0f19ea2ced4f85e527b78 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 29 Oct 2022 05:21:04 -0400 Subject: [PATCH] Correct ed448 versioning --- coins/monero/Cargo.toml | 2 +- crypto/ciphersuite/Cargo.toml | 2 +- crypto/ed448/Cargo.toml | 2 +- crypto/frost/Cargo.toml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/coins/monero/Cargo.toml b/coins/monero/Cargo.toml index 00308153..e6b723e5 100644 --- a/coins/monero/Cargo.toml +++ b/coins/monero/Cargo.toml @@ -34,7 +34,7 @@ dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.1" } multiexp = { path = "../../crypto/multiexp", version = "0.2", features = ["batch"] } transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.1", features = ["recommended"], optional = true } -frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.3", features = ["ed25519"], optional = true } +frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.4", features = ["ed25519"], optional = true } dleq = { path = "../../crypto/dleq", version = "0.1", features = ["serialize"], optional = true } monero-generators = { path = "generators", version = "0.1" } diff --git a/crypto/ciphersuite/Cargo.toml b/crypto/ciphersuite/Cargo.toml index 57c8f92d..b0746f9e 100644 --- a/crypto/ciphersuite/Cargo.toml +++ b/crypto/ciphersuite/Cargo.toml @@ -31,7 +31,7 @@ elliptic-curve = { version = "0.12", features = ["hash2curve"], optional = true p256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true } k256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true } -minimal-ed448 = { path = "../ed448", version = "0.1", optional = true } +minimal-ed448 = { path = "../ed448", version = "^0.1.2", optional = true } [features] std = [] diff --git a/crypto/ed448/Cargo.toml b/crypto/ed448/Cargo.toml index c7be3f75..43a01fbe 100644 --- a/crypto/ed448/Cargo.toml +++ b/crypto/ed448/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal-ed448" -version = "0.1.1" +version = "0.1.2" description = "Unaudited, inefficient implementation of Ed448 in Rust" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ed448" diff --git a/crypto/frost/Cargo.toml b/crypto/frost/Cargo.toml index e496129d..471af7ad 100644 --- a/crypto/frost/Cargo.toml +++ b/crypto/frost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modular-frost" -version = "0.4.0" +version = "0.4.1" description = "Modular implementation of FROST over ff/group" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/frost" @@ -30,7 +30,7 @@ chacha20 = { version = "0.9", features = ["zeroize"] } group = "0.12" dalek-ff-group = { path = "../dalek-ff-group", version = "^0.1.2", optional = true } -minimal-ed448 = { path = "../ed448", version = "0.1", optional = true } +minimal-ed448 = { path = "../ed448", version = "^0.1.2", optional = true } ciphersuite = { path = "../ciphersuite", version = "0.1", features = ["std"] }