mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
88a1fce15c
Updates message-queue ot try recv every second, not 5.
45 lines
1.4 KiB
TOML
45 lines
1.4 KiB
TOML
[package]
|
|
name = "serai-processor-tests"
|
|
version = "0.1.0"
|
|
description = "Tests for Serai's Processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/tests/processor"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
hex = "0.4"
|
|
|
|
zeroize = "1"
|
|
rand_core = "0.6"
|
|
|
|
curve25519-dalek = "3.2"
|
|
ciphersuite = { path = "../../crypto/ciphersuite", features = ["ristretto"] }
|
|
dkg = { path = "../../crypto/dkg", features = ["tests"] }
|
|
|
|
bitcoin-serai = { path = "../../coins/bitcoin" }
|
|
monero-serai = { path = "../../coins/monero" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../../processor/messages" }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives" }
|
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives" }
|
|
serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives" }
|
|
serai-message-queue = { path = "../../message-queue" }
|
|
|
|
serde = "1"
|
|
serde_json = "1"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
processor = { package = "serai-processor", path = "../../processor", features = ["bitcoin", "monero"] }
|
|
|
|
dockertest = "0.3"
|
|
serai-docker-tests = { path = "../docker" }
|
|
serai-message-queue-tests = { path = "../message-queue" }
|