brec 0.6.0

A flexible binary format for storing and streaming structured data as packets with CRC protection and recoverability from corruption. Built for extensibility and robustness.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod locator;
mod reader;
mod slot;
mod writer;

#[cfg(feature = "observer")]
mod observer;

#[cfg(feature = "observer")]
pub use observer::*;
pub use reader::*;
pub use writer::*;

pub(crate) use locator::*;
pub(crate) use slot::*;

pub use slot::{DEFAULT_SLOT_CAPACITY, STORAGE_SLOT_SIG};