Skip to main content

gibblox_casync/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5mod index;
6mod reader;
7
8pub use index::{
9    CASYNC_CHUNK_ID_LEN, CasyncChunkId, CasyncChunkRef, CasyncIndex, CasyncIndexValidation,
10};
11pub use reader::{CasyncBlockReader, CasyncChunkStore, CasyncIndexSource, CasyncReaderConfig};