#zip #tar #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

#619 in Compression

Download history 118/week @ 2024-07-22 449/week @ 2024-07-29 455/week @ 2024-08-05 167/week @ 2024-08-12 196/week @ 2024-08-19 70/week @ 2024-08-26 140/week @ 2024-09-02 271/week @ 2024-09-09 121/week @ 2024-09-16 163/week @ 2024-09-23 116/week @ 2024-09-30 274/week @ 2024-10-07 246/week @ 2024-10-14 37/week @ 2024-10-21 283/week @ 2024-10-28 122/week @ 2024-11-04

689 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