[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 "] 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"] }