mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Implement a FROST algorithm for Schnorrkel
This commit is contained in:
28
crypto/schnorrkel/Cargo.toml
Normal file
28
crypto/schnorrkel/Cargo.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[package]
|
||||
name = "frost-schnorrkel"
|
||||
version = "0.1.0"
|
||||
description = "modular-frost Algorithm compatible with Schnorrkel"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorrkel"
|
||||
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
||||
keywords = ["frost", "multisig", "threshold", "schnorrkel"]
|
||||
edition = "2021"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
rand_core = "0.6"
|
||||
zeroize = "1.5"
|
||||
|
||||
group = "0.12"
|
||||
|
||||
ciphersuite = { path = "../ciphersuite", version = "0.1", features = ["std", "ristretto"] }
|
||||
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.2" }
|
||||
frost = { path = "../frost", package = "modular-frost", version = "0.5", features = ["ristretto"] }
|
||||
|
||||
schnorrkel = "0.10"
|
||||
|
||||
[dev-dependencies]
|
||||
frost = { path = "../frost", package = "modular-frost", version = "0.5", features = ["ristretto", "tests"] }
|
||||
Reference in New Issue
Block a user