jsonrpc_core_client/
lib.rs

1//! JSON-RPC client implementation primitives.
2//!
3//! By default this crate does not implement any transports,
4//! use corresponding features (`tls`, `http` or `ws`) to opt-in for them.
5//!
6//! See documentation of [`jsonrpc-client-transports`](https://docs.rs/jsonrpc-client-transports) for more details.
7
8#![deny(missing_docs)]
9
10pub use futures;
11pub use jsonrpc_client_transports::*;