mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
c4bdbdde11
* Updates to modern dockertest * More updates to latest dockertest * Update Cargo.lock to dockertest with handle restored * clippy coordinator tests * clippy full-stack tests * Remove kayabaNerve branch for official repo's latest commit hash * Update serai-client, remove reliance on the existence of a handle fn * Don't use the hex encoding of unique_id in dockertests Gets our hostnames just below 64 bytes, resolving test failures on at least Debian-based systems. * Use Network::Isolated for all dockertest instances * Correct error from prior commit's edits
41 lines
1.2 KiB
TOML
41 lines
1.2 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"]
|
|
|
|
[dependencies]
|
|
hex = "0.4"
|
|
|
|
zeroize = { version = "1", default-features = false }
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
curve25519-dalek = { version = "4", features = ["rand_core"] }
|
|
|
|
bitcoin-serai = { path = "../../coins/bitcoin" }
|
|
monero-serai = { path = "../../coins/monero" }
|
|
|
|
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.4"
|
|
serai-docker-tests = { path = "../docker" }
|
|
serai-message-queue-tests = { path = "../message-queue" }
|
|
serai-processor-tests = { path = "../processor" }
|
|
serai-coordinator-tests = { path = "../coordinator" }
|