2023-07-20 07:13:14 -07:00
|
|
|
[package]
|
|
|
|
name = "coordinator"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-25 10:12:45 -07:00
|
|
|
async-trait = "0.1.83"
|
2024-08-14 14:53:56 -07:00
|
|
|
derivative = "2.2.0"
|
2024-02-02 11:58:04 -08:00
|
|
|
eyre = "0.6.12"
|
2024-11-19 13:06:14 -08:00
|
|
|
frost-core = { version = "2.0.0", features = ["serde"] }
|
2024-06-24 10:47:49 -07:00
|
|
|
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
|
2024-11-22 05:38:11 -08:00
|
|
|
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
|
2024-10-24 06:36:20 -07:00
|
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] }
|
2023-07-20 07:13:14 -07:00
|
|
|
hex = { version = "0.4", features = ["serde"] }
|
2024-11-19 13:01:11 -08:00
|
|
|
thiserror = "2.0"
|
2023-07-20 07:13:14 -07:00
|
|
|
rand = "0.8"
|
|
|
|
serde_json = "1.0"
|
2024-08-14 14:53:56 -07:00
|
|
|
serdect = { version = "0.2.0" }
|
2024-05-20 14:14:06 -07:00
|
|
|
itertools = "0.13.0"
|
2023-07-20 07:13:14 -07:00
|
|
|
exitcode = "1.1.2"
|
2024-12-09 09:22:28 -08:00
|
|
|
clap = { version = "4.5.23", features = ["derive"] }
|
2024-11-22 05:41:35 -08:00
|
|
|
reqwest = { version = "0.12.9", features = ["json"] }
|
2024-03-22 07:27:52 -07:00
|
|
|
server = { path = "../server" }
|
2024-11-20 07:11:47 -08:00
|
|
|
participant = { path = "../participant" }
|
2023-11-21 06:56:29 -08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
message-io = "0.18"
|
2024-10-24 06:36:20 -07:00
|
|
|
rpassword = "7.3.1"
|
2024-11-20 07:11:47 -08:00
|
|
|
snow = "0.9.6"
|
2024-12-18 15:17:57 -08:00
|
|
|
xeddsa = "1.0.2"
|
2023-07-21 18:17:28 -07:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|