hexz-ops 0.8.0

High-level snapshot operations: pack, write, inspect, sign
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(test, allow(clippy::unwrap_used, clippy::expect_used, unused_results))]

//! High-level archive operations for Hexz.

pub mod archive_writer;
pub mod inspect;
pub mod pack;
pub mod parallel_pack;
pub mod parent_index;
/// Pre-pack analysis and savings prediction.
pub mod predict;
pub mod progress;
#[cfg(feature = "signing")]
pub mod sign;
pub mod write;