logimesh 0.1.9

logimesh is a Rust RPC Microservice 2.0 framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Andeya Lee 2024
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
//! A `Transport` which implements `AsyncRead` and `AsyncWrite`.

pub mod codec;
pub use ::tarpc::serde_transport::{new, unix};
pub use ::tarpc::transport::channel;
pub use ::tarpc::Transport;

pub mod tcp {
    //! tcp transport
    pub use ::tarpc::serde_transport::tcp::*;
}