#archive #tar #zip

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

#635 in Compression

Download history 49/week @ 2024-03-13 49/week @ 2024-03-20 70/week @ 2024-03-27 53/week @ 2024-04-03 28/week @ 2024-04-10 94/week @ 2024-04-17 69/week @ 2024-04-24 34/week @ 2024-05-01 56/week @ 2024-05-08 451/week @ 2024-05-15 196/week @ 2024-05-22 38/week @ 2024-05-29 41/week @ 2024-06-05 72/week @ 2024-06-12 46/week @ 2024-06-19 684/week @ 2024-06-26

848 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