cbor-no-std 0.1.0

cbor-no-std is a CBOR Deserializer for Rust which runs in a no_std environment.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(lang_items, alloc)]
#![cfg_attr(all(feature = "no_std", not(test)), no_std)]

#![cfg(feature = "no_std")]

#[macro_use] extern crate alloc;
pub mod value;
pub mod io;
pub mod de;
pub mod ser;
pub mod constants;
mod error;
mod bytes;
pub use value::{Value};
pub use ser::{to_bytes};
pub use de::{from_bytes};