vsf 0.3.4

Versatile Storage Format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! VSF Decoding Module
//!
//! This module handles decoding VSF binary format back into Rust types.

pub mod helpers;
pub mod metadata;
pub mod parse;
pub mod primitives;
#[cfg(feature = "spirix")]
pub mod spirix;
pub mod tensors;

// Re-export the main parse function
pub use metadata::parse_file_length;
pub use parse::parse;