No description
Find a file
Jamie Winsor 2e5afef935 fix segmentation fault
add read_block function to reader
2016-01-11 19:38:01 -08:00
src fix segmentation fault 2016-01-11 19:38:01 -08:00
tests Initial commit 2016-01-09 15:40:08 -08: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 lock to >= 0.2.0 of libc 2016-01-11 19:23:04 -08:00
LICENSE Initial commit 2016-01-09 15:40:08 -08:00
README.md Initial commit 2016-01-09 15:40:08 -08:00

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;