Rust CBOR lite
===============
A lite [CBOR](http://cbor.io/) encoder and decoder for Rust. The primary goal of
`cbor_lite` is to allow encoding and decoding of CBOR data with minimal
implementation size. The library doesn't have error handling and doesn't support custom data types.
For a fully working implementation use [pyfisch's
serde_cbor](https://crates.io/crates/serde_cbor) or [BurntSushi's cbor](https://crates.io/crates/cbor)
Usage
====
extern crate cbor_lite;
use cbor_lite::from_bytes;
println!("{:?}", from_bytes::(vec![131, 1, 2, 3]));
// => Array(1, 2, 3)