#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

#723 in Compression

Download history 42/week @ 2024-11-19 50/week @ 2024-11-26 100/week @ 2024-12-03 111/week @ 2024-12-10 93/week @ 2024-12-17 98/week @ 2024-12-24 10/week @ 2024-12-31 156/week @ 2025-01-07 114/week @ 2025-01-14 49/week @ 2025-01-21 52/week @ 2025-01-28 103/week @ 2025-02-04 31/week @ 2025-02-11 98/week @ 2025-02-18 317/week @ 2025-02-25 208/week @ 2025-03-04

661 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