co/
lib.rs

1#![cfg_attr(not(test), no_std)]
2#![doc = include_str!("../README.md")]
3
4mod decode;
5mod encode;
6mod reader;
7mod writer;
8
9/// The crate's prelude.
10pub mod prelude {
11    pub use crate::{AsDecoder as _, Decode, DecodeWith, Encode, EncodeExt as _};
12}
13
14pub use crate::{
15    decode::{AsDecoder, Decode, DecodeWith, Decoder},
16    encode::{Buffer, Encode, EncodeExt, LittleEndianEncodeExt, Size},
17    reader::Reader,
18    writer::Writer,
19};