serai/crypto/schnorrkel/Cargo.toml
2023-01-13 18:52:38 -05:00

28 lines
923 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"
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"] }