mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-31 15:20:15 +00:00
c01cccb288
This also formats `log` events more nicely. Instead of ``` Mar 29 09:46:16.775 INFO log: Found message after comparing 82 lines log.target="testcontainers::core::wait_for_message" log.module_path="testcontainers::core::wait_for_message" log.file="/home/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/testcontainers-0.12.0/src/core/wait_for_message.rs" log.line=35 ``` We now have ``` Mar 29 09:57:15.860 INFO testcontainers::core::wait_for_message: Found message after comparing 81 lines ```
18 lines
514 B
TOML
18 lines
514 B
TOML
[package]
|
|
name = "monero-harness"
|
|
version = "0.1.0"
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
futures = "0.3"
|
|
monero-rpc = { path = "../monero-rpc" }
|
|
port_check = "0.1"
|
|
rand = "0.7"
|
|
spectral = "0.6"
|
|
testcontainers = "0.12"
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "time", "macros"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "tracing-log"] }
|