[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 "] keywords = ["dkg", "multisig", "threshold", "ff", "group"] edition = "2021" rust-version = "1.66" [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 } ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false } dkg = { path = "../", version = "0.6", default-features = false } [features] std = [ "zeroize/std", "thiserror/std", "ciphersuite/std", "dkg/std", ] default = ["std"]