A modern archive format for Unix, implemented in Rust
Go to file
Nathan Fisher 64a8269b9d Partial port to new spec revision (won't compile yet); 2023-07-15 11:36:21 -04:00
src Partial port to new spec revision (won't compile yet); 2023-07-15 11:36:21 -04:00
test Fix bug caused by writing big endian bytes instead of little endian for 2023-07-10 01:02:04 -04:00
.gitignore Initial commit 2023-07-02 00:44:39 -04:00
Cargo.lock Add `par_create_archive` function 2023-07-05 14:27:40 -04:00
Cargo.toml Add `par_create_archive` function 2023-07-05 14:27:40 -04:00
Format.md Partial port to new spec revision (won't compile yet); 2023-07-15 11:36:21 -04:00
LICENSE.md Add BSD license 2023-07-04 01:30:11 -04:00
README.md Add space in between description and contents heading in README 2023-07-04 21:08:30 -04:00
haggis-454c3e482188.core Fix bug caused by writing big endian bytes instead of little endian for 2023-07-10 01:02:04 -04:00

README.md

A modern archive format for serializing files, like Tar or Zip

Contents

Features

For a more full specification of the format, please see Format.md

  • No padding between metadata fields or data segments so it only stores the data required to recreate the original file
  • Optional inline checksumming using a choice of md5, sha1 or sha256 algorithms to ensure data integrity
  • Easily parallelized library code
  • Uses generic Read and Write interfaces from Rust std to support reading archive nodes from anything that can supply a stream of data

Building

The minimum supported Rust version (MSRV) for this project is currently Rust 1.65. The crate can be added to your project by adding it to your Cargo.toml file. Until the api is more mature you will have to use the crate from it's git repository rather than from the crates.io package registry.

[dependencies.haggis]
git = "https://codeberg.org/jeang3nie/haggis.git"

Contributing

Contributions are always welcome. Please run cargo fmt and cargo clippy and fix any issues before sending pull requests on Codeberg or patches via git send-email.

In addition to contributing to the Rust implementation here, it would be welcome to see Haggis implemented in other languages.