mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
Boog900
88f7d1f212
* download monerod in CI * move action file * add macOS arm support * remove reqwest from workspace * undo whitespace changes * fix indentation * update comments * add monerod to .gitignore * Apply suggestions from code review Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * add back spacing --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
30 lines
No EOL
936 B
TOML
30 lines
No EOL
936 B
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 }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
bytes = { workspace = true, features = ["std"] }
|
|
tempfile = { workspace = true }
|
|
|
|
borsh = { workspace = true, features = ["derive"]}
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true }
|
|
pretty_assertions = { workspace = true } |