serai/crypto/dkg/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "dkg"
2023-03-21 00:28:41 +00:00
version = "0.4.0"
description = "Distributed key generation over ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
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"
2023-03-07 07:29:59 +00:00
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
serde = { version = "1", features = ["derive"], optional = true }
2023-03-16 23:29:22 +00:00
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", features = ["recommended"] }
chacha20 = { version = "0.9", features = ["zeroize"] }
2023-03-21 00:28:41 +00:00
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std"] }
2023-03-16 23:29:22 +00:00
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"] }
2023-03-21 00:28:41 +00:00
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
2023-03-16 23:29:22 +00:00
dleq = { path = "../dleq", version = "0.3", features = ["serialize"] }
[dev-dependencies]
2023-03-21 00:28:41 +00:00
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["ristretto"] }
[features]
serde = ["dep:serde"]
tests = []