mirror of
https://github.com/Drop-OSS/drop
synced 2026-08-27 14:23:05 -04:00
| .. | ||
| src | ||
| tests | ||
| .gitignore | ||
| .travis.yml | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
libarchive-rust
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;