2025-08-18 01:24:40 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dkg-pedpop"
|
|
|
|
|
version = "0.6.0"
|
|
|
|
|
description = "The PedPoP distributed key generation protocol"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg/pedpop"
|
|
|
|
|
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"] }
|
|
|
|
|
|
|
|
|
|
zeroize = { version = "^1.5", default-features = false, features = ["std", "zeroize_derive"] }
|
|
|
|
|
rand_core = { version = "0.6", default-features = false, features = ["std"] }
|
|
|
|
|
|
2025-08-18 05:01:27 -04:00
|
|
|
transcript = { package = "flexible-transcript", path = "../../transcript", version = "^0.3.3", default-features = false, features = ["std", "recommended"] }
|
2025-08-18 01:24:40 -04:00
|
|
|
chacha20 = { version = "0.9", default-features = false, features = ["std", "zeroize"] }
|
|
|
|
|
|
|
|
|
|
multiexp = { path = "../../multiexp", version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
|
ciphersuite = { path = "../../ciphersuite", version = "^0.4.1", default-features = false, features = ["std"] }
|
|
|
|
|
schnorr = { package = "schnorr-signatures", path = "../../schnorr", version = "^0.5.1", default-features = false, features = ["std"] }
|
|
|
|
|
dleq = { path = "../../dleq", version = "^0.4.1", default-features = false, features = ["std", "serialize"] }
|
|
|
|
|
|
2025-08-18 04:49:18 -04:00
|
|
|
dkg = { path = "../", version = "0.6", default-features = false, features = ["std"] }
|
2025-08-18 01:24:40 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
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", default-features = false }
|