Add a message-queue connection to processor

Still needs love, yet should get us closer to starting testing.
This commit is contained in:
Luke Parker
2023-07-17 15:49:15 -04:00
parent 56f7037084
commit 6ccac2d0ab
17 changed files with 184 additions and 81 deletions

View File

@@ -32,7 +32,8 @@ bincode = "1"
serde_json = "1"
# Cryptography
group = "0.13"
ciphersuite = { path = "../crypto/ciphersuite", features = ["ristretto"] }
schnorr = { package = "schnorr-signatures", path = "../crypto/schnorr" }
transcript = { package = "flexible-transcript", path = "../crypto/transcript" }
frost = { package = "modular-frost", path = "../crypto/frost", features = ["ristretto"] }
@@ -60,7 +61,7 @@ serai-client = { path = "../substrate/client", default-features = false }
messages = { package = "serai-processor-messages", path = "./messages" }
jsonrpsee = { version = "0.16", features = ["client"] }
reqwest = "0.11"
message-queue = { package = "serai-message-queue", path = "../message-queue" }
[dev-dependencies]