mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 19:49:33 +00:00
ee22e81c7e
* test-utils: impl `rpc` module * client: use `spawn_blocking` * client: add tests * ignore test for now * add example and `get_transaction_verification_data()` * client: calculate proper `generated_coins` * data: fix `generated_coins/reward` references * data: fix height
36 lines
983 B
TOML
36 lines
983 B
TOML
[package]
|
|
name = "cuprate-test-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900", "hinto-janai"]
|
|
|
|
[dependencies]
|
|
cuprate-types = { path = "../types" }
|
|
monero-wire = { path = "../net/monero-wire" }
|
|
monero-p2p = { path = "../p2p/monero-p2p", features = ["borsh"] }
|
|
|
|
hex = { workspace = true }
|
|
hex-literal = { workspace = true }
|
|
monero-serai = { workspace = true, features = ["std", "http-rpc"] }
|
|
futures = { workspace = true, features = ["std"] }
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { 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"
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true }
|