nrpc 0.10.0

Yet another remote procedure call library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod service;
mod stream_utils;

pub use service::{ClientHandler, ClientService, ServerService, ServiceError, ServiceClientStream, ServiceServerStream};

pub use stream_utils::{EmptyStream, OnceStream, VecStream};

pub mod _helpers {
    pub use async_trait;
    pub use bytes;
    pub use prost;
    pub use futures;
}