serai/crypto/schnorrkel/Cargo.toml
Luke Parker 82c34dcc76
Implement a FROST variant of Schnorrkel (#274)
* Minor lint

* Update frost-schnorrkel to the latest modular-frost

* Tidy up the schnorrkel library
2023-04-10 06:05:17 -04:00

30 lines
1,008 B
TOML

[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"
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", features = ["merlin"] }
group = "0.13"
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std", "ristretto"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
frost = { path = "../frost", package = "modular-frost", version = "0.7", features = ["ristretto"] }
schnorrkel = "0.10"
[dev-dependencies]
frost = { path = "../frost", package = "modular-frost", features = ["tests"] }