mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-10-30 07:47:35 +00:00
Boog900
e560ecc2ee
* monerod: set a random DB and remove dir when done * add a test for an inbound monerod handshake * don't fail if can't remove dir on windows * Update test-utils/src/monerod.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * use `temp_dir` * use `tempfile` --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
24 lines
No EOL
614 B
TOML
24 lines
No EOL
614 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"] }
|
|
tempfile = { workspace = true }
|
|
|
|
borsh = { workspace = true, features = ["derive"]}
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
tar = "0.4.40"
|
|
bzip2 = "0.4.4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
zip = "0.6" |