#tar-archive #zip #archive

libarchive

A safe Rust API for authoring and extracting archives with libarchive

2 releases

Uses old Rust 2015

0.1.1 Mar 22, 2016
0.1.0 Mar 17, 2016

#900 in Compression

Download history 98/week @ 2025-11-11 183/week @ 2025-11-18 69/week @ 2025-11-25 26/week @ 2025-12-02 24/week @ 2025-12-09 23/week @ 2025-12-16 24/week @ 2025-12-23 23/week @ 2025-12-30 17/week @ 2026-01-06 18/week @ 2026-01-13 113/week @ 2026-01-20 68/week @ 2026-01-27 48/week @ 2026-02-03 48/week @ 2026-02-10 60/week @ 2026-02-17 37/week @ 2026-02-24

203 downloads per month
Used in 3 crates

Apache-2.0

38KB
913 lines

libarchive-rust

Build Status

A Rust crate for interacting with archives using libarchive

Documentation

Requirements

Version 3 of libarchive is required to use this library.

The required libraries and binaries can be installed by running:

Debian / Ubuntu

$ sudo apt-get install libarchive13

Mac OS X

$ brew install libarchive

Usage

Put this in your Cargo.toml:

[dependencies]
libarchive = "*"

And this in your crate root:

extern crate libarchive;

Dependencies

~110KB