2023-11-30 18:09:05 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-test-utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
monero-wire = {path = "../net/monero-wire"}
|
2024-01-22 18:18:15 +00:00
|
|
|
monero-p2p = {path = "../p2p/monero-p2p", features = ["borsh"] }
|
2023-11-30 18:09:05 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
futures = { workspace = true, features = ["std"] }
|
|
|
|
async-trait = { workspace = true }
|
2024-02-12 13:39:15 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
bytes = { workspace = true, features = ["std"] }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-02-12 13:39:15 +00:00
|
|
|
borsh = { workspace = true, features = ["derive"]}
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
tar = "0.4.40"
|
|
|
|
bzip2 = "0.4.4"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
zip = "0.6"
|