#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 49/week @ 2024-03-13 49/week @ 2024-03-20 70/week @ 2024-03-27 53/week @ 2024-04-03 28/week @ 2024-04-10 94/week @ 2024-04-17 69/week @ 2024-04-24 34/week @ 2024-05-01 56/week @ 2024-05-08 451/week @ 2024-05-15 196/week @ 2024-05-22 38/week @ 2024-05-29 41/week @ 2024-06-05 72/week @ 2024-06-12 46/week @ 2024-06-19 684/week @ 2024-06-26

每月下载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