bale 0.1.0

A mmap-first, fixed-stride zip-like pack format
Documentation
1
2
3
4
5
6
7
8
9
10
//! Integration tests for single-file bale archives using external CLI tools.

/// Verifies single_file.bale with file, zipinfo, and unzip.
#[test]
#[cfg_attr(not(feature = "integration-tests"), ignore = "requires external tools")]
fn cli_tools() {
    trycmd::TestCases::new()
        .case("tests/cmd/single_file/*.toml")
        .run();
}