2023-06-22 15:50:51 -07:00
|
|
|
[package]
|
|
|
|
name = "dkg"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-02 11:58:04 -08:00
|
|
|
eyre = "0.6.12"
|
2024-06-24 10:47:49 -07:00
|
|
|
frost-core = { version = "2.0.0-rc.0", features = ["serde"] }
|
|
|
|
frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] }
|
|
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "4d8c4bb337231e6e89117334d7c61dada589a953", features = ["frost"] }
|
2024-10-15 03:26:14 -07:00
|
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
2023-06-22 15:50:51 -07:00
|
|
|
hex = { version = "0.4", features = ["serde"] }
|
|
|
|
thiserror = "1.0"
|
|
|
|
rand = "0.8"
|
|
|
|
serde_json = "1.0"
|
2024-05-20 14:14:06 -07:00
|
|
|
itertools = "0.13.0"
|
2023-06-22 15:50:51 -07:00
|
|
|
exitcode = "1.1.2"
|
2023-07-21 18:17:28 -07:00
|
|
|
pipe = "0.4.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|