2024-06-05 14:35:08 +00:00
|
|
|
[package]
|
2024-06-24 01:30:47 +00:00
|
|
|
name = "cuprate-json-rpc"
|
2024-06-05 14:35:08 +00:00
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "JSON-RPC 2.0 implementation"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["hinto-janai"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/rpc/json-rpc"
|
|
|
|
keywords = ["json", "rpc"]
|
2024-06-12 01:12:31 +00:00
|
|
|
categories = ["encoding"]
|
2024-06-05 14:35:08 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-12 01:12:31 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
thiserror = { workspace = true }
|
2024-06-05 14:35:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-09-02 17:12:54 +00:00
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|