2023-11-30 18:09:05 +00:00
|
|
|
[package]
|
2024-07-18 23:50:27 +00:00
|
|
|
name = "cuprate-test-utils"
|
2023-11-30 18:09:05 +00:00
|
|
|
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-08-06 23:48:53 +00:00
|
|
|
cuprate-types = { path = "../types" }
|
2024-09-19 15:55:28 +00:00
|
|
|
cuprate-helper = { path = "../helper", features = ["map", "tx"] }
|
2024-08-06 23:48:53 +00:00
|
|
|
cuprate-wire = { path = "../net/wire" }
|
|
|
|
cuprate-p2p-core = { path = "../p2p/p2p-core", features = ["borsh"] }
|
2023-11-30 18:09:05 +00:00
|
|
|
|
2024-08-06 23:48:53 +00:00
|
|
|
hex = { workspace = true }
|
|
|
|
hex-literal = { workspace = true }
|
|
|
|
monero-serai = { workspace = true, features = ["std"] }
|
|
|
|
monero-simple-request-rpc = { workspace = true }
|
|
|
|
monero-rpc = { workspace = true }
|
|
|
|
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 }
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
paste = { workspace = true }
|
|
|
|
borsh = { workspace = true, features = ["derive"]}
|
2024-02-12 13:39:15 +00:00
|
|
|
|
2024-04-13 01:13:46 +00:00
|
|
|
[dev-dependencies]
|
2024-07-18 23:50:27 +00:00
|
|
|
hex = { workspace = true }
|
2024-09-18 22:14:31 +00:00
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|