https://github.com/fnichol/libarchive-rust
A Rust crate for interacting with archives using libarchive
https://github.com/fnichol/libarchive-rust
Last synced: about 2 months ago
JSON representation
A Rust crate for interacting with archives using libarchive
- Host: GitHub
- URL: https://github.com/fnichol/libarchive-rust
- Owner: fnichol
- License: mit
- Created: 2015-12-18T02:24:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-09-12T04:54:00.000Z (over 1 year ago)
- Last Synced: 2025-04-10T09:57:03.844Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 6
- Watchers: 4
- Forks: 18
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libarchive-rust
[](https://travis-ci.org/chef/libarchive-rust)
[](https://crates.io/crates/libarchive)A Rust crate for interacting with archives using [libarchive](http://www.libarchive.org)
## Requirements
Version 3 of libarchive is required to use this library.
The required libraries and binaries can be installed by running:
#### Debian / Ubuntu
```shell
$ sudo apt-get install libarchive13
```#### Mac OS X
```shell
$ brew install libarchive
```## Usage
Put this in your `Cargo.toml`:
```toml
[dependencies]
libarchive = "*"
```And this in your crate root:
```rust
extern crate libarchive;
```