mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
03078f328c
This allows us to move `monero-harness` and `bitcoin-harness` into `[dev-dependencies]` of `swap`.
19 lines
521 B
TOML
19 lines
521 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.0", default-features = false, features = ["rt-multi-thread", "time", "macros"] }
|
|
tracing = "0.1"
|
|
tracing-log = "0.1"
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter"] }
|