gibblox-casync 0.0.1

casync index parsing and reconstruction core.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

mod index;
mod reader;

pub use index::{
    CASYNC_CHUNK_ID_LEN, CasyncChunkId, CasyncChunkRef, CasyncIndex, CasyncIndexValidation,
};
pub use reader::{CasyncBlockReader, CasyncChunkStore, CasyncIndexSource, CasyncReaderConfig};