Update Cargo.lock after rebase

This commit is contained in:
Luke Parker
2025-08-30 19:36:00 -04:00
parent 354efc0192
commit 3c6e889732
14 changed files with 1285 additions and 2300 deletions

View File

@@ -23,7 +23,8 @@ bitvec = { version = "1", default-features = false, features = ["alloc"] }
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
sp-core = { git = "https://github.com/serai-dex/polkadot-sdk", branch = "serai-next", default-features = false }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["alloc", "ristretto"] }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["alloc"] }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", default-features = false }
dkg = { path = "../../crypto/dkg", default-features = false }
bech32 = { version = "0.11", default-features = false }

View File

@@ -3,7 +3,8 @@ use alloc::vec::Vec;
use zeroize::Zeroize;
use borsh::{BorshSerialize, BorshDeserialize};
use ciphersuite::{group::GroupEncoding, Ciphersuite, Ristretto};
use ciphersuite::{group::GroupEncoding, Ciphersuite};
use dalek_ff_group::Ristretto;
use crate::{
constants::MAX_KEY_SHARES_PER_SET,