mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
0910c0a231
Some checks failed
Deny / audit (push) Has been cancelled
Audit / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (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
* fixed-bytes: add `serde`, document feature flags * fixed-bytes: add derives * rpc: add `as _` syntax to macro * rpc: use `ByteArrayVec` and `ContainerAsBlob` for binary types * fixed-bytes: re-add derives * rpc-types: dedup default value within macro * readme: fixed bytes section
25 lines
759 B
TOML
25 lines
759 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", "cuprate-fixed-bytes/serde"]
|
|
epee = ["dep:cuprate-epee-encoding"]
|
|
|
|
[dependencies]
|
|
cuprate-epee-encoding = { path = "../../net/epee-encoding", optional = true }
|
|
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
|
|
|
monero-serai = { workspace = true }
|
|
paste = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|