#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

#613 in Compression

Download history 58/week @ 2023-10-16 120/week @ 2023-10-23 50/week @ 2023-10-30 68/week @ 2023-11-06 236/week @ 2023-11-13 195/week @ 2023-11-20 238/week @ 2023-11-27 104/week @ 2023-12-04 38/week @ 2023-12-11 44/week @ 2023-12-18 39/week @ 2023-12-25 22/week @ 2024-01-01 59/week @ 2024-01-08 106/week @ 2024-01-15 32/week @ 2024-01-22 41/week @ 2024-01-29

245 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

~110KB