serde_cbor 0.3.1

CBOR serialization and deserialization using serde.
Documentation

Serde CBOR Serialization Library

Build Status Coverage Status

Documentation

This crate is a Rust library for parsing and generating the CBOR (Concise Binary Object Representation) file format. It is built upon Serde, a high performance generic serialization framework.

About CBOR

CBOR is a binary encoding based on a superset of the JSON data model. It supports all the standard JSON types plus binary data, big numbers, non-string keys, time values and custom data types using tagging of values. CBOR is always shorter than the corresponding JSON representation and easier and faster to parse.