mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
48 lines
1.6 KiB
TOML
48 lines
1.6 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"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
hex = "0.4"
|
|
|
|
zeroize = { version = "1", default-features = false }
|
|
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
|
|
|
|
curve25519-dalek = "4"
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["ristretto"] }
|
|
dkg = { path = "../../crypto/dkg", default-features = false, features = ["tests"] }
|
|
|
|
bitcoin-serai = { path = "../../coins/bitcoin" }
|
|
monero-serai = { path = "../../coins/monero" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../../processor/messages" }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3" }
|
|
serai-client = { path = "../../substrate/client" }
|
|
serai-message-queue = { path = "../../message-queue" }
|
|
|
|
borsh = { version = "1", features = ["de_strict_order"] }
|
|
serde = { version = "1", default-features = false }
|
|
serde_json = { version = "1", default-features = false }
|
|
|
|
tokio = { version = "1", features = ["time"] }
|
|
|
|
processor = { package = "serai-processor", path = "../../processor", features = ["bitcoin", "monero"] }
|
|
|
|
dockertest = "0.4"
|
|
serai-docker-tests = { path = "../docker" }
|
|
serai-message-queue-tests = { path = "../message-queue" }
|