mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
136abf7edd
* `serde/epee` feature flags * modify type generator macros * add `defaults.rs` * add `free.rs` * add `misc` module * modify `base.rs`, `contants.rs` * remove `binary_string.rs`, `status.rs` * fix macro usage * base: re-add `AccessRequestBase` * fix default functions * tx_entry: fix link
24 lines
671 B
TOML
24 lines
671 B
TOML
[package]
|
|
name = "cuprate-rpc-types"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
description = "Monero RPC types"
|
|
license = "MIT"
|
|
authors = ["hinto-janai"]
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/rpc/types"
|
|
keywords = ["cuprate", "rpc", "types", "monero"]
|
|
|
|
[features]
|
|
default = ["serde", "epee"]
|
|
serde = ["dep:serde"]
|
|
epee = ["dep:cuprate-epee-encoding"]
|
|
|
|
[dependencies]
|
|
cuprate-epee-encoding = { path = "../../net/epee-encoding", optional = true }
|
|
|
|
monero-serai = { workspace = true }
|
|
paste = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|