frost-zcash-demo/tests/Cargo.toml

26 lines
688 B
TOML

[package]
name = "tests"
version = "0.1.0"
edition = "2021"
[dependencies]
frost-ed25519 = { version = "1.0.0", features = ["serde"] }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "81c649c412e5b6ba56d491d2857f91fbd28adbc7", features = ["frost"] }
hex = "0.4"
rand = "0.8"
exitcode = "1.1.2"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
frost-ed25519 = { version = "1.0.0", features = ["serde"] }
dkg = { path = "../dkg"}
trusted-dealer = { path = "../trusted-dealer"}
participant = { path = "../participant"}
coordinator = { path = "../coordinator"}
server = { path = "../server"}
rand = "0.8"
[features]
default = []