2023-11-30 18:09:05 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-test-utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-02-29 20:29:11 +00:00
|
|
|
license = "MIT"
|
2024-04-21 16:11:23 +00:00
|
|
|
authors = ["Boog900", "hinto-janai"]
|
2023-11-30 18:09:05 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-21 00:34:04 +00:00
|
|
|
cuprate-types = { path = "../types" }
|
2024-04-21 16:11:23 +00:00
|
|
|
monero-wire = { path = "../net/monero-wire" }
|
|
|
|
monero-p2p = { path = "../p2p/monero-p2p", features = ["borsh"] }
|
2023-11-30 18:09:05 +00:00
|
|
|
|
2024-04-21 16:11:23 +00:00
|
|
|
hex = { workspace = true }
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
monero-serai = { workspace = true, features = ["std", "http-rpc"] }
|
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"] }
|
2024-03-05 01:29:57 +00:00
|
|
|
tokio-util = { workspace = true }
|
2024-02-12 13:39:15 +00:00
|
|
|
reqwest = { workspace = true }
|
2024-04-21 16:11:23 +00:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2024-02-12 13:39:15 +00:00
|
|
|
bytes = { workspace = true, features = ["std"] }
|
2024-02-25 21:21:25 +00:00
|
|
|
tempfile = { workspace = true }
|
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]
|
2024-04-13 01:13:46 +00:00
|
|
|
zip = "0.6"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
hex = { workspace = true }
|