#libarchive #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

#424 in Compression

Download history 71/week @ 2023-02-14 156/week @ 2023-02-21 24/week @ 2023-02-28 221/week @ 2023-03-07 41/week @ 2023-03-14 103/week @ 2023-03-21 18/week @ 2023-03-28 17/week @ 2023-04-04 182/week @ 2023-04-11 25/week @ 2023-04-18 101/week @ 2023-04-25 28/week @ 2023-05-02 21/week @ 2023-05-09 20/week @ 2023-05-16 15/week @ 2023-05-23 62/week @ 2023-05-30

119 downloads per month
Used in 3 crates

Apache-2.0

38KB
913 lines

libarchive-rust

Build Status crates.io

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

~105KB