Crates.io | smol-jsonrpc |
lib.rs | smol-jsonrpc |
version | 0.2.0 |
source | src |
created_at | 2023-06-20 22:39:41.629042 |
updated_at | 2023-07-19 18:28:46.678949 |
description | Messages and related types for implementing the JSON-RPC protocol |
homepage | |
repository | https://gitlab.com/smol-jsonrpc/smol-jsonrpc |
max_upload_size | |
id | 895548 |
size | 22,336 |
Small JSON-RPC
library for handling Request
and Response
messages in the JSON-RPC
2.0
protocol.
Makes no assumptions about transport layer, and is a default no_std
library.
Note: the library currently requires the alloc
crate. Future work may remove this requirement.
std
To use std
-only features, enable the std
feature:
smol_jsonrpc = { version = "x.x", features = ["std"] }