2020-09-28 02:18:50 -04:00
|
|
|
[package]
|
|
|
|
name = "monero-harness"
|
|
|
|
version = "0.1.0"
|
2021-04-29 03:32:42 -04:00
|
|
|
authors = [ "CoBloX Team <team@coblox.tech>" ]
|
2022-03-12 06:05:36 -05:00
|
|
|
edition = "2021"
|
2021-05-10 20:30:13 -04:00
|
|
|
publish = false
|
2020-09-28 02:18:50 -04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
futures = "0.3"
|
2021-02-21 20:32:15 -05:00
|
|
|
monero-rpc = { path = "../monero-rpc" }
|
2020-09-28 02:18:50 -04:00
|
|
|
rand = "0.7"
|
|
|
|
spectral = "0.6"
|
2024-02-23 14:04:27 -05:00
|
|
|
testcontainers = "0.14"
|
2021-04-29 03:32:42 -04:00
|
|
|
tokio = { version = "1", default-features = false, features = [ "rt-multi-thread", "time", "macros" ] }
|
2020-09-28 02:18:50 -04:00
|
|
|
tracing = "0.1"
|
2021-04-29 03:32:42 -04:00
|
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = [ "fmt", "ansi", "env-filter", "tracing-log" ] }
|