2025-08-18 01:24:40 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dkg-promote"
|
2025-08-18 05:26:41 -04:00
|
|
|
version = "0.6.1"
|
2025-08-18 01:24:40 -04:00
|
|
|
description = "Promotions for keys from the dkg crate"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg/promote"
|
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
keywords = ["dkg", "multisig", "threshold", "ff", "group"]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
rust-version = "1.80"
|
|
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
thiserror = { version = "2", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
|
|
transcript = { package = "flexible-transcript", path = "../../transcript", version = "^0.3.2", default-features = false, features = ["std", "recommended"] }
|
|
|
|
|
ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false, features = ["std"] }
|
|
|
|
|
dleq = { path = "../../dleq", version = "^0.4.1", default-features = false, features = ["std", "serialize"] }
|
|
|
|
|
|
2025-08-18 05:26:41 -04:00
|
|
|
dkg = { path = "../", version = "0.6.1", default-features = false, features = ["std"] }
|
2025-08-18 01:24:40 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["std", "zeroize_derive"] }
|
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
|
2025-08-20 04:50:37 -04:00
|
|
|
dalek-ff-group = { path = "../../dalek-ff-group" }
|
2025-08-18 01:24:40 -04:00
|
|
|
dkg-recovery = { path = "../recovery", default-features = false, features = ["std"] }
|