pilota 0.1.0

Pilota is a thrift and protobuf implementation in pure rust with high performance and extensibility.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc(
    html_logo_url = "https://github.com/cloudwego/pilota/raw/main/.github/assets/logo.png?sanitize=true"
)]
#![cfg_attr(not(doctest), doc = include_str!("../README.md"))]

pub mod thrift;

// reexport
pub use anyhow::Error as AnyhowError;
pub use async_recursion;
pub use async_trait;
pub use derivative;
pub use lazy_static;
pub use num_enum;
pub use thiserror::Error as ThisError;
pub use tokio::io::AsyncRead;