mirror of
https://github.com/serai-dex/serai.git
synced 2024-10-30 08:57:36 +00:00
37 lines
1 KiB
TOML
37 lines
1 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"
|
||
|
|
||
|
rand_core = "0.6"
|
||
|
|
||
|
ciphersuite = { path = "../../crypto/ciphersuite", features = ["ristretto"] }
|
||
|
dkg = { path = "../../crypto/dkg" }
|
||
|
|
||
|
messages = { package = "serai-processor-messages", path = "../../processor/messages" }
|
||
|
|
||
|
serai-primitives = { path = "../../substrate/primitives" }
|
||
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives" }
|
||
|
serai-message-queue = { path = "../../message-queue" }
|
||
|
|
||
|
serde_json = "1"
|
||
|
|
||
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
||
|
dockertest = "0.3"
|
||
|
serai-docker-tests = { path = "../docker" }
|
||
|
serai-message-queue-tests = { path = "../message-queue" }
|