2024-06-05 14:35:08 +00:00
|
|
|
[package]
|
2024-06-24 01:30:47 +00:00
|
|
|
name = "cuprate-rpc-types"
|
2024-06-05 14:35:08 +00:00
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Monero RPC types"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["hinto-janai"]
|
2024-06-26 21:24:05 +00:00
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/rpc/types"
|
|
|
|
keywords = ["cuprate", "rpc", "types", "monero"]
|
2024-06-05 14:35:08 +00:00
|
|
|
|
|
|
|
[features]
|
2024-07-09 21:58:02 +00:00
|
|
|
default = ["serde", "epee"]
|
2024-07-13 00:26:11 +00:00
|
|
|
serde = ["dep:serde", "cuprate-fixed-bytes/serde"]
|
2024-07-09 21:58:02 +00:00
|
|
|
epee = ["dep:cuprate-epee-encoding"]
|
2024-06-05 14:35:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-09 21:58:02 +00:00
|
|
|
cuprate-epee-encoding = { path = "../../net/epee-encoding", optional = true }
|
2024-07-13 00:26:11 +00:00
|
|
|
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
2024-10-05 00:47:44 +00:00
|
|
|
cuprate-types = { path = "../../types", default-features = false, features = ["epee", "serde"] }
|
2024-06-26 21:24:05 +00:00
|
|
|
|
|
|
|
paste = { workspace = true }
|
2024-07-09 21:58:02 +00:00
|
|
|
serde = { workspace = true, optional = true }
|
2024-06-05 14:35:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-28 20:43:16 +00:00
|
|
|
cuprate-test-utils = { path = "../../test-utils" }
|
|
|
|
|
2024-09-02 17:12:54 +00:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|