diff --git a/common/std-shims/Cargo.toml b/common/std-shims/Cargo.toml index 534a4216..ef746a64 100644 --- a/common/std-shims/Cargo.toml +++ b/common/std-shims/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "std-shims" -version = "0.1.1" +version = "0.1.2" description = "A series of std shims to make alloc more feasible" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/common/std-shims" authors = ["Luke Parker "] keywords = ["nostd", "no_std", "alloc", "io"] edition = "2021" -rust-version = "1.70" +rust-version = "1.80" [package.metadata.docs.rs] all-features = true diff --git a/crypto/frost/Cargo.toml b/crypto/frost/Cargo.toml index 7c32b6f0..29a974f2 100644 --- a/crypto/frost/Cargo.toml +++ b/crypto/frost/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "modular-frost" -version = "0.8.1" +version = "0.9.0" description = "Modular implementation of FROST over ff/group" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/frost" authors = ["Luke Parker "] keywords = ["frost", "multisig", "threshold"] edition = "2021" -rust-version = "1.79" +rust-version = "1.80" [package.metadata.docs.rs] all-features = true diff --git a/crypto/schnorrkel/Cargo.toml b/crypto/schnorrkel/Cargo.toml index 2508bef0..47717af5 100644 --- a/crypto/schnorrkel/Cargo.toml +++ b/crypto/schnorrkel/Cargo.toml @@ -26,7 +26,7 @@ group = "0.13" ciphersuite = { path = "../ciphersuite", version = "^0.4.1", features = ["std", "ristretto"] } schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "^0.5.1" } -frost = { path = "../frost", package = "modular-frost", version = "^0.8.1", features = ["ristretto"] } +frost = { path = "../frost", package = "modular-frost", version = "^0.9.0", features = ["ristretto"] } schnorrkel = { version = "0.11" } diff --git a/networks/bitcoin/Cargo.toml b/networks/bitcoin/Cargo.toml index 5ab44cc6..02f834d8 100644 --- a/networks/bitcoin/Cargo.toml +++ b/networks/bitcoin/Cargo.toml @@ -26,7 +26,7 @@ rand_core = { version = "0.6", default-features = false } bitcoin = { version = "0.32", default-features = false } k256 = { version = "^0.13.1", default-features = false, features = ["arithmetic", "bits"] } -frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.8", default-features = false, features = ["secp256k1"], optional = true } +frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.9", default-features = false, features = ["secp256k1"], optional = true } hex = { version = "0.4", default-features = false, optional = true } serde = { version = "1", default-features = false, features = ["derive"], optional = true }