Skip to main content

karyon_jsonrpc/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod client;
4pub mod codec;
5pub mod error;
6pub mod message;
7pub mod server;
8
9#[cfg(feature = "http")]
10mod hyper_exec;
11
12pub use karyon_jsonrpc_macro::{rpc_impl, rpc_method, rpc_pubsub_impl};