zarust 0.2.0

Rust implementation of the ZArchive format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Read and write the ZArchive (`.zar`/`.wua`) format.
//!
//! This is a Rust implementation of the format, not a rewrite of it.
//! [`ArchiveReader`] accepts any seekable reader and [`ArchiveWriter`] accepts
//! any writer. The `zarust` binary is a small filesystem adapter on these APIs.

mod error;
mod format;
mod reader;
mod writer;

pub use error::{Error, Result};
pub use reader::{ArchiveReader, DirEntry, EntryKind, NodeHandle, ROOT_NODE};
pub use writer::ArchiveWriter;