cbor2 1.0.3

Full-featured CBOR (RFC 8949) for serde: async item I/O, canonical encoding, no_std, Value/RawValue, tags, COSE keys, validation and diagnostics.
Documentation
//! The single integration-test binary.
//!
//! Keeping all integration tests in one binary makes `cargo test` faster
//! and lets the coverage of generic functions instantiated by the tests
//! merge properly.

#[cfg(all(feature = "alloc", feature = "std"))]
mod async_io;
mod canonical;
#[cfg(feature = "derive")]
mod cose;
mod de_edge;
mod diag;
mod errors;
mod limits;
mod markers;
mod raw;
mod rfc8949;
mod roundtrip;
mod size;
mod tag;
mod validate;
mod value;
mod value_api;
mod value_serde;