nibblecode 0.1.0

A serialization format based on rkyv
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! APIs for testing code that uses nibblecode.
//!
//! These APIs are test-only. The exact signatures of these APIs change
//! depending on which features are enabled so that they can be used uniformly
//! across:
//!
//! - `std`, no-std, and no-std-no-alloc configurations
//! - `bytecheck` enabled or disabled
//!
//! In the no-std-no-alloc configuration, the amount of data that can be
//! serialized or allocated during serialization is limited. If you test in
//! these configurations, keep your data sizes relatively small.

mod outer;
pub use self::outer::*;

mod inner;
pub use self::inner::*;