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-04-11 17:09:26 -07:00
|
|
|
async-trait = "0.1.80"
|
2024-03-14 14:23:21 -07:00
|
|
|
frost-ed25519 = { version = "1.0.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-04-15 02:53:00 -07:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-01-30 11:07:32 -08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
message-io = "0.18"
|
2024-05-17 05:30:38 -07:00
|
|
|
reqwest = { version = "0.11.23", features = ["json"] }
|
|
|
|
server = { path = "../server" }
|
2023-07-21 18:17:28 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
redpallas = []
|
|
|
|
default = []
|