mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 19:49:33 +00:00
aa718e224f
Some checks failed
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
Deny / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Doc / deploy (push) Has been cancelled
* test-utils: add `crate::rpc::types` module * test-utils: conditional json doc-tests * json: add test data, fix macro doc tests * json: add all data * other: add all data * bin: add skeleton * docs * move type to correct file * rpc: `client/{client,constants}.rs` -> `client.rs` * lib.rs: remove `clippy::module_inception`
30 lines
No EOL
1 KiB
TOML
30 lines
No EOL
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"] }
|
|
cuprate-wire = { path = "../net/wire" }
|
|
cuprate-p2p-core = { path = "../p2p/p2p-core", 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 }
|
|
paste = { workspace = true }
|
|
borsh = { workspace = true, features = ["derive"]}
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true }
|
|
pretty_assertions = { workspace = true } |