1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![cfg_attr(not(feature = "std"), no_std)]

extern crate zerocopy;

pub mod decode;
pub mod encode;
#[cfg(feature = "ext")]
pub mod ext;
mod marker;

#[cfg(feature = "ext")]
pub use ext::*;
pub use serde_bytes::Bytes;