mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-17 16:28:20 +00:00
32a44a2503
* cargo: add `pretty_assertions` * test-utils: add tests to compare data against RPC data, and fix * small fixes * database: fix `cumulative_generated_coins` from test data block had wrong data which offset all of the asserts
38 lines
No EOL
1.1 KiB
TOML
38 lines
No EOL
1.1 KiB
TOML
[package]
|
|
name = "cuprate-test-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900", "hinto-janai"]
|
|
|
|
[dependencies]
|
|
cuprate-types = { path = "../types" }
|
|
cuprate-helper = { path = "../helper", features = ["map"] }
|
|
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 }
|
|
pretty_assertions = { workspace = true } |