Skip to main content

planck_pack_core/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(feature = "alloc")]
4extern crate alloc;
5
6mod error;
7mod traits;
8mod encode;
9mod radix;
10
11pub use error::DecodeError;
12pub use traits::Packable;
13pub use encode::Pack;