rings-rpc 0.20.0

Rings is a structured peer-to-peer network implementation using WebRTC, Chord algorithm, and full WebAssembly (WASM) support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! rings rpc library
#![deny(missing_docs)]

/// Error types used by the RPC client and handlers.
pub mod error;
/// JSON-RPC client implementation.
pub mod jsonrpc;
/// JSON-RPC method names.
pub mod method;
/// Re-exported dependencies used by public RPC types.
pub mod prelude;
/// JSON-RPC request and response DTOs.
pub mod protos;
/// Shared RPC transport settings.
pub mod types;