#archive #zip #tar

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

#604 in Compression

Download history 32/week @ 2024-01-08 77/week @ 2024-01-15 5/week @ 2024-01-22 13/week @ 2024-01-29 13/week @ 2024-02-05 16/week @ 2024-02-12 26/week @ 2024-02-19 48/week @ 2024-02-26 58/week @ 2024-03-04 50/week @ 2024-03-11 44/week @ 2024-03-18 58/week @ 2024-03-25 76/week @ 2024-04-01 19/week @ 2024-04-08 83/week @ 2024-04-15

240 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