#cbor #codec #lite #decoder #encoder #io #error

cbor-lite

为 Rust 编写的轻量级 CBOR 编码器和解码器

2 个版本

使用旧的 Rust 2015

0.1.1 2018年7月11日
0.1.0 2018年7月11日

#20#lite

MIT 许可证

18KB
484

Rust CBOR 轻量级

为 Rust 编写的轻量级 CBOR 编码器和解码器。cbor_lite 的主要目标是允许以最小的实现大小进行 CBOR 数据的编码和解码。该库不包含错误处理,也不支持自定义数据类型。

对于完整功能的实现,请使用 pyfisch 的 serde_cborBurntSushi 的 cbor

使用方法

extern crate cbor_lite;
use cbor_lite::from_bytes;

println!("{:?}", from_bytes::(vec![131, 1, 2, 3]));
// => Array(1, 2, 3)

无运行时依赖