mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 04:39:24 +00:00
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "frost-schnorrkel"
|
|
version = "0.2.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"
|
|
rust-version = "1.85"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
std-shims = { version = "0.1", path = "../../common/std-shims", default-features = false, features = ["alloc"] }
|
|
|
|
rand_core = { version = "0.6", default-features = false }
|
|
zeroize = { version = "1.5", default-features = false, features = ["zeroize_derive", "alloc"] }
|
|
|
|
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3.2", default-features = false, features = ["merlin"] }
|
|
|
|
ciphersuite = { path = "../ciphersuite", version = "0.4.1", default-features = false, features = ["alloc"] }
|
|
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.5.1", default-features = false, features = ["alloc"] }
|
|
frost = { path = "../frost", package = "modular-frost", version = "0.11.0", default-features = false, features = ["ristretto"] }
|
|
|
|
schnorrkel = { version = "0.11", default-features = false, features = ["alloc"] }
|
|
|
|
[dev-dependencies]
|
|
frost = { path = "../frost", package = "modular-frost", features = ["tests"] }
|
|
|
|
[features]
|
|
std = [
|
|
"std-shims/std",
|
|
|
|
"rand_core/std",
|
|
"zeroize/std",
|
|
|
|
"transcript/std",
|
|
|
|
"ciphersuite/std",
|
|
"schnorr/std",
|
|
"frost/std",
|
|
|
|
"schnorrkel/std",
|
|
]
|
|
default = ["std"]
|