Crates.io | cbor-tools |
lib.rs | cbor-tools |
version | 0.3.0 |
source | src |
created_at | 2021-01-02 01:20:57.452377 |
updated_at | 2021-12-11 02:03:27.403746 |
description | Tools for encoding and decoding CBOR |
homepage | |
repository | https://github.com/ericseppanen/cbor-tools |
max_upload_size | |
id | 330362 |
size | 101,124 |
cbor-tools
is a toolkit for manipulating CBOR-encoded data.
CBOR is a data serialization format described in RFC7049. CBOR is a binary-friendly self-describing data encoding that has built-in types for:
Other crates (i.e. serde_cbor
) provide serde
serialization and
deserialization of native Rust data structures.
This crate provides tools for constructing and deconstructing CBOR with fine-grained control, including:
Display
of low-level CBOR-encoded dataTo encode some data in CBOR, create one or more CborType
values,
and then call encode()
on them:
use cbor_tools::{CborType, Encode};
let my_data = vec![1, 2, 3];
let cbor_tree = CborType::from(my_data);
let cbor_bytes = cbor_tree.encode();
// cbor_bytes is a Vec<u8>
There is a From<T>
implementation available for many simple types.
Additional data structures can be built by hand, like this non-homogenous
array:
use cbor_tools::{CborType, Encode};
// An array containing a string and an integer.
let list = vec![
CborType::from("abc"),
CborType::from(123),
];
let cbor_tree = CborType::from(list);
let cbor_bytes = cbor_tree.encode();
// cbor_bytes is a Vec<u8>
Decoding of arbitrary CBOR data can be performed using the Decode
trait.
To examine the low-level details of CBOR-encoded data, use the
DecodeSymbolic
trait, which optionally implements Display
if the display
feature is enabled.