[package] name = "dkg" version = "0.2.0" description = "Distributed key generation over ff/group" license = "MIT" repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg" authors = ["Luke Parker "] keywords = ["dkg", "multisig", "threshold", "ff", "group"] edition = "2021" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] thiserror = "1" rand_core = "0.6" zeroize = { version = "1.5", features = ["zeroize_derive"] } subtle = "2" hex = "0.4" transcript = { package = "flexible-transcript", path = "../transcript", version = "0.2", features = ["recommended"] } chacha20 = { version = "0.9", features = ["zeroize"] } group = "0.12" multiexp = { path = "../multiexp", version = "0.2", features = ["batch"] } ciphersuite = { path = "../ciphersuite", version = "0.1", features = ["std"] } schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.2" } dleq = { path = "../dleq", version = "0.2", features = ["serialize"] } [dev-dependencies] ciphersuite = { path = "../ciphersuite", version = "0.1", features = ["std", "ristretto"] } [features] tests = []