mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-17 00:07:55 +00:00
Boog900
475c8c5ac0
* output monerod logs when a thread panics * always spawn a monerod don't attempt to re-use * set zmq port and `non-interactive` * check monerod has started before test * remove test panic * review changes
23 lines
No EOL
582 B
TOML
23 lines
No EOL
582 B
TOML
[package]
|
|
name = "cuprate-test-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
monero-wire = {path = "../net/monero-wire"}
|
|
monero-p2p = {path = "../p2p/monero-p2p", features = ["borsh"] }
|
|
|
|
futures = { workspace = true, features = ["std"] }
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
reqwest = { workspace = true }
|
|
bytes = { workspace = true, features = ["std"] }
|
|
|
|
borsh = { workspace = true, features = ["derive"]}
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
tar = "0.4.40"
|
|
bzip2 = "0.4.4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
zip = "0.6" |