#archive #tar #zip

libarchive

为libarchive编写和提取归档的Rust安全API

2个版本

使用旧的Rust 2015

0.1.1 2016年3月22日
0.1.0 2016年3月17日

压缩 中排名635

Download history • Rust 包仓库 49/week @ 2024-03-13 • Rust 包仓库 49/week @ 2024-03-20 • Rust 包仓库 70/week @ 2024-03-27 • Rust 包仓库 53/week @ 2024-04-03 • Rust 包仓库 28/week @ 2024-04-10 • Rust 包仓库 94/week @ 2024-04-17 • Rust 包仓库 69/week @ 2024-04-24 • Rust 包仓库 34/week @ 2024-05-01 • Rust 包仓库 56/week @ 2024-05-08 • Rust 包仓库 451/week @ 2024-05-15 • Rust 包仓库 196/week @ 2024-05-22 • Rust 包仓库 38/week @ 2024-05-29 • Rust 包仓库 41/week @ 2024-06-05 • Rust 包仓库 72/week @ 2024-06-12 • Rust 包仓库 46/week @ 2024-06-19 • Rust 包仓库 684/week @ 2024-06-26 • Rust 包仓库

每月下载848
3 crates 中使用

Apache-2.0

38KB
913

libarchive-rust

Build Status

使用libarchive与归档交互的Rust crate

文档

要求

需要libarchive的版本3来使用此库。

可以通过运行以下命令安装所需的库和二进制文件

Debian / Ubuntu

$ sudo apt-get install libarchive13

Mac OS X

$ brew install libarchive

使用方法

将此内容放入您的 Cargo.toml

[dependencies]
libarchive = "*"

并在您的crate根目录中放入此内容

extern crate libarchive;

依赖

~110KB