2025-08-18 01:24:40 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dkg-recovery"
|
|
|
|
|
version = "0.6.0"
|
|
|
|
|
description = "Recover a secret-shared key from a collection of dkg::ThresholdKeys"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg/recovery"
|
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
|
keywords = ["dkg", "multisig", "threshold", "ff", "group"]
|
|
|
|
|
edition = "2021"
|
2025-08-19 17:40:19 -04:00
|
|
|
rust-version = "1.74"
|
2025-08-18 01:24:40 -04:00
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
zeroize = { version = "^1.5", default-features = false }
|
|
|
|
|
|
|
|
|
|
thiserror = { version = "2", default-features = false }
|
|
|
|
|
|
2025-08-18 02:13:12 -04:00
|
|
|
ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false }
|
2025-08-18 04:49:18 -04:00
|
|
|
dkg = { path = "../", version = "0.6", default-features = false }
|
2025-08-18 01:24:40 -04:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
std = [
|
|
|
|
|
"zeroize/std",
|
|
|
|
|
"thiserror/std",
|
|
|
|
|
"ciphersuite/std",
|
|
|
|
|
"dkg/std",
|
|
|
|
|
]
|
|
|
|
|
default = ["std"]
|