workflow-rpc 0.18.0

Workflow RPC (wRPC) framework based on the workflow-websocket crate offering native & in-browser (WASM32) clients and a native server (based on tokio & tungstenite). wRPC supports custom Borsh and JSON protocols with use of generics for RPC method declarations.
Documentation
1
2
3
4
5
6
7
//!
//! Convenience module exporting all types required for using the [`RpcServer`]
//!
pub use crate::error::ServerError;
pub use crate::id::*;
pub use crate::result::ServerResult;
pub use crate::server::*;