2023-04-11 13:21:35 +00:00
|
|
|
[package]
|
|
|
|
name = "coordinator"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Serai coordinator to prepare batches and sign transactions"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = []
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-16 04:51:56 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
|
|
|
|
zeroize = "^1.5"
|
2023-04-15 21:38:47 +00:00
|
|
|
|
2023-04-11 23:04:53 +00:00
|
|
|
blake2 = "0.10"
|
|
|
|
|
2023-04-16 04:51:56 +00:00
|
|
|
transcript = { package = "flexible-transcript", path = "../crypto/transcript", features = ["recommended"] }
|
|
|
|
ciphersuite = { path = "../crypto/ciphersuite" }
|
2023-04-11 23:04:53 +00:00
|
|
|
frost = { package = "modular-frost", path = "../crypto/frost" }
|
|
|
|
|
2023-04-15 21:38:47 +00:00
|
|
|
serai-db = { path = "../common/db" }
|
|
|
|
|
2023-04-11 23:04:53 +00:00
|
|
|
processor-messages = { package = "processor-messages", path = "../processor/messages" }
|
|
|
|
tributary = { package = "tributary-chain", path = "./tributary" }
|
|
|
|
|
2023-04-15 21:38:47 +00:00
|
|
|
serai-client = { path = "../substrate/client", features = ["serai"] }
|
|
|
|
|
2023-04-16 04:51:56 +00:00
|
|
|
log = "0.4"
|
2023-04-11 13:21:35 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-04-11 23:04:53 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand_core = "0.6"
|
|
|
|
|
|
|
|
tributary = { package = "tributary-chain", path = "./tributary", features = ["tests"] }
|