cbor_no_std/lib.rs
1#![feature(lang_items, alloc)]
2#![cfg_attr(all(feature = "no_std", not(test)), no_std)]
3
4#![cfg(feature = "no_std")]
5
6#[macro_use] extern crate alloc;
7pub mod value;
8pub mod io;
9pub mod de;
10pub mod ser;
11pub mod constants;
12mod error;
13mod bytes;
14pub use value::{Value};
15pub use ser::{to_bytes};
16pub use de::{from_bytes};