2020-09-28 02:18:50 -04:00
|
|
|
[package]
|
|
|
|
name = "monero-harness"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["CoBloX Team <team@coblox.tech>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[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"
|
2021-02-16 01:09:09 -05:00
|
|
|
testcontainers = "0.12"
|
2021-03-18 00:30:09 -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-03-28 18:48:56 -04:00
|
|
|
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "ansi", "env-filter", "tracing-log"] }
|