drop/libraries/libarchive
2026-04-03 01:25:10 +00:00
..
src fix: clippy lints 2026-03-02 22:24:47 +11:00
tests New v0.4.0 website 2026-04-03 01:25:10 +00:00
.gitignore Initial commit 2016-01-09 15:40:08 -08:00
.travis.yml Initial commit 2016-01-09 15:40:08 -08:00
Cargo.toml New v0.4.0 website 2026-04-03 01:25:10 +00:00
LICENSE Initial commit 2016-01-09 15:40:08 -08:00
README.md Remove invalid docs link 2019-01-03 18:13:37 -08:00

libarchive-rust

Build Status crates.io

A Rust crate for interacting with archives using libarchive

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;