2 个版本
使用旧的 Rust 2015
0.1.1 | 2018年7月11日 |
---|---|
0.1.0 | 2018年7月11日 |
#20 在 #lite
18KB
484 行
Rust CBOR 轻量级
为 Rust 编写的轻量级 CBOR 编码器和解码器。cbor_lite 的主要目标是允许以最小的实现大小进行 CBOR 数据的编码和解码。该库不包含错误处理,也不支持自定义数据类型。
对于完整功能的实现,请使用 pyfisch 的 serde_cbor 或 BurntSushi 的 cbor
使用方法
extern crate cbor_lite;
use cbor_lite::from_bytes;
println!("{:?}", from_bytes::(vec![131, 1, 2, 3]));
// => Array(1, 2, 3)