#bincode #future #networking

tokio-bincodec

tokio-bincodec的分支

1个不稳定版本

0.1.0 2022年11月22日

#23 in #bincode

MIT 许可协议

8KB
125

tokio-bincodec

Crates.io Crates.io Docs.rs

tokio-bincodec的分支

使用方法

首先,将以下内容添加到您的 Cargo.toml

[dependencies]
tokio-bincodec = "0.1"

然后您可以使用它,例如

#[derive(Serialize, Deserialize)]
struct MyProtocol;

// Create the codec based on your custom protocol
let codec = tokio_bincodec::bincodec::<MyProtocol>();

// Frame the transport with the codec to produce a stream/sink
let f = Framed::new(transport, codec);

许可协议

本项目采用 MIT许可协议

依赖关系

~2.8–4MB
~68K SLoC