wkwrap 1.6.0

webKNOSSOS wrapper is a file format designed for large-scale, three-dimensional voxel datasets. It was optimized for high-speed access to data subvolumes, and supports multi-channel data and dataset compression.
Documentation
// public modules
pub mod dataset;
pub mod file;
pub mod header;
pub mod mat;
pub mod morton;
pub mod result;
pub mod vec;

// private modules
mod lz4;

// convenience
pub use dataset::Dataset;
pub use file::File;
pub use header::{BlockType, Header, VoxelType};
pub use mat::Mat;
pub use morton::{Iter, Morton};
pub use result::Result;
pub use vec::{Box3, Vec3};