cbor2
A serde implementation of RFC 8949 — the Concise Binary Object Representation (CBOR) — for Rust.
CBOR adopts and modestly builds on the data model used by JSON, except the
encoding is in binary form. Its primary goals include a balance of
implementation size, message size and extensibility. cbor2 brings it to
any serde::Serialize/Deserialize type, on std and no_std targets
alike, with a dynamic Value type, deterministic encoding, tag support and
first-class COSE ergonomics on top.
Dual-licensed under MIT or the UNLICENSE.
Quick start
[]
= "1"
For the cbor command line tool, install cbor2-cli:
use ;
let photo = Photo ;
let bytes = to_vec.unwrap;
let back: Photo = from_slice.unwrap;
assert_eq!;
to_writer and from_reader work with any std::io::Write/Read, and
Deserializer::into_iter decodes a stream of concatenated items.
from_slice/from_reader read one leading CBOR item; use validate when
a buffer must contain exactly one item.
Highlights
- Full serde integration —
#[derive(Serialize, Deserialize)]types encode and decode directly. - RFC 8949 preferred serialization — integers and floats are always encoded in their smallest lossless form, including half-precision floats.
- A dynamic
Valuetype — the CBOR analogue ofserde_json::Value, with acbor!macro for building values in JSON-like syntax. - Tag support — capture and emit semantic tags (RFC 8949 §3.4) through
the wrapper types in the
tagmodule;u128/i128map to bignum tags automatically. - Deterministic encoding —
to_canonical_vec/to_canonical_writerandValue::canonicalizeimplement the core deterministic encoding requirements (RFC 8949 §4.2.1): bytewise lexicographic map key order, definite lengths, preferred serializations, normalized bignums and NaN. For protocols built on the older RFC 7049 §3.9 "Canonical CBOR" rule (kept as RFC 8949 §4.2.3, and used by ciborium's canonical module), the*_withvariants takeKeyOrder::LengthFirst. - Integer map keys and tags (COSE) — with the
derivefeature,#[derive(cbor2::Cbor)]maps struct fields to integer keys (#[cbor(key = 1)]) and wraps the struct in a CBOR tag (#[cbor(tag = 18)]), as RFC 9052 requires, with no ambiguity against textual keys. Field names and the type name stay untouched, so the same types still serialize to plain JSON —serde_json::to_string(&v)just works, with the original field names and no tag. The declared keys and tag stay inspectable at runtime through thecbor2::Cbortrait. - Raw values —
RawValuekeeps one item as validated, undecoded bytes: serializing splices them into the stream untouched and deserializing captures them byte for byte, for signature payloads, pass-through items and deferred decoding.TryFromconverts in both directions betweenRawValueandValue. - Robust decoding — indefinite-length items, segmented strings, duplicate map keys, unknown tags and CBOR sequences (RFC 8742) are all handled; recursion is depth-limited and forged lengths cannot trigger huge allocations.
- Diagnostic notation —
diagnosticrenders raw CBOR as the human-readable text of RFC 8949 §8 (matching the Appendix A examples exactly, indefinite-length markers and all);ValueimplementsDisplaywith the same notation andDebugas its indented, multi-line form. - Allocation-free helpers —
validatechecks that an input is exactly one well-formed CBOR item (RFC 8949 §5.3.1, including text UTF-8),serialized_sizecomputes the exact encoded size of any serializable value andto_sliceencodes into a caller-provided buffer; none of them allocates heap memory. - A low-level header codec — the
coremodule exposes the pull/pushHeaderinterface for applications that need precise wire control. no_stdsupport —default-features = false, features = ["alloc"]keeps the full API minusstd::iointerop andHashMapconversions; withoutallocthe crate still serializes (to_writer/to_slice/serialized_size), validates and speaks thecoreheader codec.
Crate features
| Feature | Default | Effect |
|---|---|---|
std |
yes | Implements the cbor2::io traits for every std::io::Read/Write and adds the HashMap conversions. Implies alloc. |
alloc |
yes (via std) |
Everything needing a heap: Value, to_vec/from_slice/from_reader, RawValue, diagnostic, the deterministic encoders and the cbor! macro. |
derive |
no | The #[derive(cbor2::Cbor)] macro. |
With no features at all the crate is a #![no_std] core for constrained
targets: streaming serialization with to_writer/to_slice/
serialized_size, validate, the tag wrappers and the core header
codec. Deserializing through serde requires alloc. Readers and writers
implement the small cbor2::io traits, which are provided for byte slices
(and Vec<u8> with alloc):
[]
= { = "1", = false } # or features = ["alloc"]
// Works on no_std + no alloc targets:
let mut buffer = ;
let item = to_slice.unwrap;
assert!;
Guide
Byte strings and serde_bytes
A common serde pitfall: bare Vec<u8> and &[u8] serialize as arrays of
integers, not as CBOR byte strings. Use
serde_bytes for binary
payloads.
let bytes = vec!;
// Bare Vec<u8>: [1, 2, 3, 4]
assert_eq!;
// serde_bytes: h'01020304'
let bytes = from;
assert_eq!;
For fields in derived structs, annotate byte buffers explicitly:
use ;
let packet = Packet ;
assert_eq!;
If you build data with Value, use Value::Bytes(...) or the From
implementations for byte slices/vectors; those already represent a CBOR
byte string.
Integer map keys and tags: COSE with #[derive(Cbor)]
With the derive feature, #[derive(cbor2::Cbor)] generates the serde
Serialize/Deserialize impls with CBOR protocol details: fields
annotated #[cbor(key = ...)] use integer map keys and the container is
wrapped in a CBOR tag (#[cbor(tag = ...)], required on decode). Field
names and the type name stay untouched, so the same types still
serialize to plain JSON.
[]
= { = "1", = ["derive"] }
This reproduces the Simple Encrypted Message of RFC 9052, Appendix C.4.1 byte for byte (52 bytes):
use Cbor;
/// Protected header parameters (RFC 9052 §3.1). They travel as a byte
/// string holding their own CBOR encoding.
/// Unprotected header parameters.
/// COSE_Encrypt0 (RFC 9052 §5.2): tag 16 around
/// `[protected: bstr, unprotected: map, ciphertext: bstr]`.
] , // protected, already encoded
Unprotected,
, // ciphertext
);
The full program lives in examples/cose.rs:
cargo run --features derive --example cose.
The derive also implements the cbor2::Cbor trait, which exposes the
declared protocol details at runtime — T::KEYS and T::TAG as
allocation-free constants, and value.keys() as a
BTreeMap<String, i128>:
use Cbor; // one import: the derive macro and the trait
assert_eq!;
assert_eq!;
Dynamic values
use ;
let value = cbor!.unwrap;
let bytes = to_vec.unwrap;
let back: Value = from_slice.unwrap;
assert_eq!;
Raw values
RawValue defers decoding and preserves the exact wire bytes of one item
— the right tool for signature payloads:
use ;
let bytes = to_vec.unwrap;
let signed: Signed = from_slice.unwrap;
// Verify `signed.signature` over `signed.payload.as_bytes()`, then:
let : = signed.payload.deserialized.unwrap;
assert_eq!;
Tags
use RequireExact;
// Tag 0: standard date/time string.
let datetime = ;
let bytes = to_vec.unwrap;
assert_eq!;
CBOR sequences
let mut stream = Vecnew;
to_writer.unwrap;
to_writer.unwrap;
let items: = from_reader
.into_iter
.
.unwrap;
assert_eq!;
assert!; // a sequence is not one item
More examples
Runnable examples live in examples/:
Design decisions
This implementation deliberately matches ciborium's wire behavior, so the two crates interoperate byte for byte:
- Numbers always encode in their smallest lossless form, as deterministic encoding (RFC 8949 §4.2.1) requires. Integer width in Rust is treated as an in-memory detail, not a wire property.
- Enums encode as a bare string (unit variants) or a single-entry map
{variant: payload}(everything else). Valuemaps areVec<(Value, Value)>, preserving wire order and arbitrary keys.- Decoding follows the robustness principle: indefinite lengths, segmented strings, half-width floats and unknown tags are accepted even though encoding never produces them.
History
This project descends from the cbor crate created by
Andrew Gallant in 2015, which was built on
the pre-serde rustc-serialize framework and went unmaintained for many
years. Version 0.5 was a from-scratch rewrite on top of
serde, maintained by LDC Labs
and published as cbor2 — the cbor name on crates.io stays with the
legacy 0.4 release — and 1.0 stabilizes it. None of the 0.4 API survives.
The rewrite follows the design of (and is wire-compatible with) ciborium — many thanks to its authors.
Command line tool
The workspace ships a cbor command line tool in
cbor2-cli. Bare cbor shows any CBOR — from a
file, stdin, a hex string or a base64 string — as diagnostic notation
(RFC 8949 §8); decode converts to pretty JSON (or pretty diagnostic
with --diag) and encode converts JSON to CBOR:
}
| |
{
}
Testing
cargo test runs the unit tests, a single integration-test binary and the
doc tests — including the RFC 8949 Appendix A vectors and fault-injection
tests for I/O failures and malformed input. CI builds and tests every
feature combination, down to a bare-metal no_std target. Coverage
measured with cargo llvm-cov is 100% of functions and about 98% of
lines; the only never-executed lines are defensive branches that cannot
occur, such as error paths that the RawValue validity invariant rules
out.
Minimum supported Rust version
Rust 1.85.
License
Dual-licensed under MIT or the UNLICENSE, like the original crate.