cbored - Exact CBOR

cbored is a CBOR reader and writer, focused on exact 1-1 CBOR representation.

Design decision

This CBOR crate is based on the following decisions:

The main use cases is to deal with CBOR data stream that are not requiring one canonical given representation (standard CBOR canonical or another) and when the data serialized need to be kept as is (e.g. when used in cryptographic settings)

Caveat Emptor

Auto CBOR Encode and Decode derive

Automatic proc-macro derive can be enabled in the Cargo.toml:

cbored = { version = "0.1", features = ["derive"] }

Which allow to derive Decode and Encode implementation for enum and struct types:

```rust

[derive(CborRepr)]

[cborrepr(structure = "array")]

// serialized as : ARRAY(2) [UINT, UINT] pub struct Point { x: u32, y: u32, }

[derive(CborRepr)]

[cborrepr(structure = "array_lastopt")]

// serialized as : ARRAY(2) [UINT, UINT] // or : ARRAY(1) [UINT] pub struct Point { x: u32, y: Option, }

[derive(CborRepr)]

[cborrepr(structure = "flat")]

// serialized as : UINT, UINT pub struct FlatPoint { x: u32, y: u32, }

[derive(CborRepr)]

[cborrepr(structure = "mapint")]

// serialized as : MAP(2) { UINT(0) => UINT, UINT(1) => UINT } // or : MAP(3) { UINT(0) => UINT, UINT(1) => UINT, UINT(2) => UINT } pub struct FlatPoint { #[cborrepr(mandatory)] x: u32, #[cborrepr(mandatory)] y: u32, z: Option }

[derive(CborRepr)]

[cborrepr(enumtype = "tagvariant")]

// serialized as // * One : ARRAY(2) [ UINT(0), ARRAY(2) [UINT, UINT] ] // * Two : ARRAY(3) [ UINT(1), ARRAY(2) [UINT, UINT], ARRAY(2) [UINT, UINT] ] pub enum Variant { One(Point), Two(Point, Point), }

[derive(CborRepr)]

[cborrepr(enumtype = "enumint")]

// serialized as // * Code1 : UINT(0) // * Code2 : UINT(1) // * Code3 : UINT(2) pub enum Code { Code1, Code2, Code3, }

[derive(CborRepr)]

[cborrepr(enumtype = "enumtype")]

// serialized as // * Empty : NULL // * One : UINT pub enum OneOrEmpty { #[cborrepr(cbortype = "null")] Empty, #[cborrepr(cbortype = "positive")] One(u64), }

```

Structure:

Enums :