mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Finally make modular-frost work with alloc alone
Carries the update to `frost-schnorrkel` and `bitcoin-serai`.
This commit is contained in:
@@ -36,9 +36,13 @@ secq256k1 = { path = "../../crypto/secq256k1", default-features = false }
|
||||
embedwards25519 = { path = "../../crypto/embedwards25519", default-features = false }
|
||||
|
||||
dkg = { path = "../../crypto/dkg", default-features = false, optional = true }
|
||||
dkg-dealer = { path = "../../crypto/dkg/dealer", default-features = false, optional = true }
|
||||
dkg-recovery = { path = "../../crypto/dkg/recovery", default-features = false, optional = true }
|
||||
dkg-musig = { path = "../../crypto/dkg/musig", default-features = false, optional = true }
|
||||
dkg-evrf = { path = "../../crypto/dkg/evrf", default-features = false, features = ["secp256k1", "ed25519"], optional = true }
|
||||
# modular-frost = { path = "../../crypto/frost", default-features = false }
|
||||
# frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false }
|
||||
|
||||
modular-frost = { path = "../../crypto/frost", default-features = false, optional = true }
|
||||
frost-schnorrkel = { path = "../../crypto/schnorrkel", default-features = false, optional = true }
|
||||
|
||||
bitcoin-serai = { path = "../../networks/bitcoin", default-features = false, features = ["hazmat"], optional = true }
|
||||
|
||||
@@ -62,7 +66,13 @@ alloc = [
|
||||
"embedwards25519/alloc",
|
||||
|
||||
"dkg",
|
||||
"dkg-dealer",
|
||||
"dkg-recovery",
|
||||
"dkg-musig",
|
||||
"dkg-evrf",
|
||||
|
||||
"modular-frost",
|
||||
"frost-schnorrkel",
|
||||
|
||||
"bitcoin-serai",
|
||||
]
|
||||
|
||||
@@ -21,12 +21,13 @@ pub mod alloc {
|
||||
pub use multiexp;
|
||||
|
||||
pub use dkg;
|
||||
pub use dkg_dealer;
|
||||
pub use dkg_recovery;
|
||||
pub use dkg_musig;
|
||||
pub use dkg_evrf;
|
||||
|
||||
pub use bitcoin_serai;
|
||||
|
||||
/*
|
||||
pub use modular_frost;
|
||||
pub use frost_schnorrkel;
|
||||
*/
|
||||
|
||||
pub use bitcoin_serai;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user