frost-zcash-demo/coordinator/Cargo.toml

32 lines
1001 B
TOML
Raw Normal View History

[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]
async-trait = "0.1.83"
2024-08-14 14:53:56 -07:00
derivative = "2.2.0"
eyre = "0.6.12"
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"] }
frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] }
hex = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
rand = "0.8"
serde_json = "1.0"
2024-08-14 14:53:56 -07:00
serdect = { version = "0.2.0" }
itertools = "0.13.0"
exitcode = "1.1.2"
clap = { version = "4.5.20", features = ["derive"] }
reqwest = { version = "0.12.8", features = ["json"] }
server = { path = "../server" }
tokio = { version = "1", features = ["full"] }
message-io = "0.18"
rpassword = "7.3.1"
2023-07-21 18:17:28 -07:00
[features]
default = []