2023-04-10 10:05:17 +00:00
|
|
|
[package]
|
|
|
|
name = "frost-schnorrkel"
|
2023-08-08 22:30:19 +00:00
|
|
|
version = "0.1.2"
|
2023-04-10 10:05:17 +00:00
|
|
|
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"
|
2023-11-21 06:19:40 +00:00
|
|
|
rust-version = "1.74"
|
2023-04-10 10:05:17 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rand_core = "0.6"
|
|
|
|
zeroize = "^1.5"
|
|
|
|
|
2023-08-08 22:30:19 +00:00
|
|
|
transcript = { package = "flexible-transcript", path = "../transcript", version = "^0.3.2", features = ["merlin"] }
|
2023-04-10 10:05:17 +00:00
|
|
|
|
|
|
|
group = "0.13"
|
|
|
|
|
2023-08-08 22:30:19 +00:00
|
|
|
ciphersuite = { path = "../ciphersuite", version = "^0.4.1", features = ["std", "ristretto"] }
|
|
|
|
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "^0.5.1" }
|
|
|
|
frost = { path = "../frost", package = "modular-frost", version = "^0.8.1", features = ["ristretto"] }
|
2023-04-10 10:05:17 +00:00
|
|
|
|
2023-09-12 12:42:55 +00:00
|
|
|
schnorrkel = { version = "0.11" }
|
2023-04-10 10:05:17 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
frost = { path = "../frost", package = "modular-frost", features = ["tests"] }
|