mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "serai-full-stack-tests"
|
|
version = "0.1.0"
|
|
description = "Tests for Serai's Full Stack"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/tests/full-stack"
|
|
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"
|
|
|
|
async-trait = "0.1"
|
|
|
|
zeroize = { version = "1", default-features = false }
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
curve25519-dalek = { version = "4", features = ["rand_core"] }
|
|
|
|
bitcoin-serai = { path = "../../networks/bitcoin" }
|
|
monero-simple-request-rpc = { path = "../../networks/monero/rpc/simple-request" }
|
|
monero-wallet = { path = "../../networks/monero/wallet" }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3" }
|
|
serde = "1"
|
|
serde_json = "1"
|
|
|
|
processor = { package = "serai-processor", path = "../../processor", features = ["bitcoin", "monero"] }
|
|
|
|
serai-client = { path = "../../substrate/client", features = ["serai"] }
|
|
|
|
tokio = { version = "1", features = ["time"] }
|
|
|
|
dockertest = "0.5"
|
|
serai-docker-tests = { path = "../docker" }
|
|
serai-message-queue-tests = { path = "../message-queue" }
|
|
serai-processor-tests = { path = "../processor" }
|
|
serai-coordinator-tests = { path = "../coordinator" }
|