2023-06-15 09:23:37 -07:00
|
|
|
[package]
|
|
|
|
name = "participant"
|
|
|
|
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-09 09:29:26 -08:00
|
|
|
async-trait = "0.1.77"
|
2023-11-21 06:56:29 -08:00
|
|
|
frost-ed25519 = { version = "1.0.0-rc.0", features = ["serde"] }
|
2024-01-05 08:40:32 -08:00
|
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "81c649c412e5b6ba56d491d2857f91fbd28adbc7", features = ["frost"] }
|
2023-06-19 11:58:27 -07:00
|
|
|
hex = "0.4"
|
2023-06-28 15:12:15 -07:00
|
|
|
rand = "0.8"
|
2024-02-02 11:58:04 -08:00
|
|
|
eyre = "0.6.12"
|
2023-07-11 08:21:39 -07:00
|
|
|
exitcode = "1.1.2"
|
2023-07-21 18:17:28 -07:00
|
|
|
serde_json = "1.0"
|
2024-02-28 11:39:09 -08:00
|
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
2024-01-30 11:07:32 -08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
message-io = "0.18"
|
2023-07-21 18:17:28 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
redpallas = []
|
|
|
|
default = []
|