From cc662cb5910b4eaa503d02a748118c9b02822fb3 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 18 Aug 2025 04:49:18 -0400 Subject: [PATCH] Version bumps, add necessary version specifications --- Cargo.lock | 4 ++-- crypto/dalek-ff-group/Cargo.toml | 2 +- crypto/dkg/dealer/Cargo.toml | 2 +- crypto/dkg/musig/Cargo.toml | 2 +- crypto/dkg/pedpop/Cargo.toml | 2 +- crypto/dkg/promote/Cargo.toml | 2 +- crypto/dkg/recovery/Cargo.toml | 2 +- crypto/ed448/Cargo.toml | 2 +- crypto/frost/Cargo.toml | 6 +++--- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0c27a8b..25765c2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1979,7 +1979,7 @@ dependencies = [ [[package]] name = "dalek-ff-group" -version = "0.4.1" +version = "0.4.2" dependencies = [ "crypto-bigint", "curve25519-dalek", @@ -4812,7 +4812,7 @@ dependencies = [ [[package]] name = "minimal-ed448" -version = "0.4.0" +version = "0.4.1" dependencies = [ "crypto-bigint", "ff", diff --git a/crypto/dalek-ff-group/Cargo.toml b/crypto/dalek-ff-group/Cargo.toml index e5793c98..24b28fcc 100644 --- a/crypto/dalek-ff-group/Cargo.toml +++ b/crypto/dalek-ff-group/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dalek-ff-group" -version = "0.4.1" +version = "0.4.2" description = "ff/group bindings around curve25519-dalek" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dalek-ff-group" diff --git a/crypto/dkg/dealer/Cargo.toml b/crypto/dkg/dealer/Cargo.toml index b1f35e89..9bc2d5d5 100644 --- a/crypto/dkg/dealer/Cargo.toml +++ b/crypto/dkg/dealer/Cargo.toml @@ -23,7 +23,7 @@ rand_core = { version = "0.6", default-features = false } std-shims = { version = "0.1", path = "../../../common/std-shims", default-features = false } ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false } -dkg = { path = "../", default-features = false } +dkg = { path = "../", version = "0.6", default-features = false } [features] std = [ diff --git a/crypto/dkg/musig/Cargo.toml b/crypto/dkg/musig/Cargo.toml index e2a971e7..42e508a1 100644 --- a/crypto/dkg/musig/Cargo.toml +++ b/crypto/dkg/musig/Cargo.toml @@ -27,7 +27,7 @@ std-shims = { version = "0.1", path = "../../../common/std-shims", default-featu multiexp = { path = "../../multiexp", version = "0.4", default-features = false } ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false } -dkg = { path = "../", default-features = false } +dkg = { path = "../", version = "0.6", default-features = false } [dev-dependencies] rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } diff --git a/crypto/dkg/pedpop/Cargo.toml b/crypto/dkg/pedpop/Cargo.toml index cfc128d1..358b7e00 100644 --- a/crypto/dkg/pedpop/Cargo.toml +++ b/crypto/dkg/pedpop/Cargo.toml @@ -30,7 +30,7 @@ ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features schnorr = { package = "schnorr-signatures", path = "../../schnorr", version = "^0.5.1", default-features = false, features = ["std"] } dleq = { path = "../../dleq", version = "^0.4.1", default-features = false, features = ["std", "serialize"] } -dkg = { path = "../", default-features = false, features = ["std"] } +dkg = { path = "../", version = "0.6", default-features = false, features = ["std"] } [dev-dependencies] rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } diff --git a/crypto/dkg/promote/Cargo.toml b/crypto/dkg/promote/Cargo.toml index e5f57ce9..9bd4f452 100644 --- a/crypto/dkg/promote/Cargo.toml +++ b/crypto/dkg/promote/Cargo.toml @@ -25,7 +25,7 @@ transcript = { package = "flexible-transcript", path = "../../transcript", versi ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false, features = ["std"] } dleq = { path = "../../dleq", version = "^0.4.1", default-features = false, features = ["std", "serialize"] } -dkg = { path = "../", default-features = false, features = ["std"] } +dkg = { path = "../", version = "0.6", default-features = false, features = ["std"] } [dev-dependencies] zeroize = { version = "^1.5", default-features = false, features = ["std", "zeroize_derive"] } diff --git a/crypto/dkg/recovery/Cargo.toml b/crypto/dkg/recovery/Cargo.toml index 96df11fc..17d7b0c3 100644 --- a/crypto/dkg/recovery/Cargo.toml +++ b/crypto/dkg/recovery/Cargo.toml @@ -22,7 +22,7 @@ zeroize = { version = "^1.5", default-features = false } thiserror = { version = "2", default-features = false } ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false } -dkg = { path = "../", default-features = false } +dkg = { path = "../", version = "0.6", default-features = false } [features] std = [ diff --git a/crypto/ed448/Cargo.toml b/crypto/ed448/Cargo.toml index 2302d7b3..7deba509 100644 --- a/crypto/ed448/Cargo.toml +++ b/crypto/ed448/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "minimal-ed448" -version = "0.4.0" +version = "0.4.1" 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 9e2f6ddd..0174fb8e 100644 --- a/crypto/frost/Cargo.toml +++ b/crypto/frost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "modular-frost" -version = "0.9.0" +version = "0.10.0" description = "Modular implementation of FROST over ff/group" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/frost" @@ -40,8 +40,8 @@ multiexp = { path = "../multiexp", version = "0.4", default-features = false, fe schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "^0.5.1", default-features = false, features = ["std"] } dkg = { path = "../dkg", version = "0.6", default-features = false, features = ["std"] } -dkg-recovery = { path = "../dkg/recovery", default-features = false, features = ["std"], optional = true } -dkg-dealer = { path = "../dkg/dealer", default-features = false, features = ["std"], optional = true } +dkg-recovery = { path = "../dkg/recovery", version = "0.6", default-features = false, features = ["std"], optional = true } +dkg-dealer = { path = "../dkg/dealer", version = "0.6", default-features = false, features = ["std"], optional = true } [dev-dependencies] hex = "0.4"