1个不稳定版本
使用旧版Rust 2015
0.2.0 | 2016年1月17日 |
---|
#641 在 压缩 分类中
22 每月下载次数
用于 tanaka
7KB
64 行
xz-decom
使用xz-embedded进行XZ解压缩
此crate提供了使用xz-embedded库的XZ解压缩。这意味着不支持压缩以及可能的一些高级功能。
在rust stable (1.5),beta (1.6) 和 nightly (1.7) 上测试过。
在OSX和Linux上测试过
用法
将以下内容添加到您的Cargo.toml文件中
[dependencies]
xz-decom = "0.2"
示例
extern crate xz_decom;
use xz_decom::decompress;
let data = include_bytes!("data/hello.xz");
let result = decompress(data).unwrap();
assert_eq!(result, "hello".as_bytes());
文档
可在此处找到: https://eminence.github.io/xz-decom/doc/xz_decom/index.html
许可证
根据您的选择,在Apache License,Version 2.0或MIT下许可
贡献
除非您明确表示,否则任何有意提交以包含在您的工作中的贡献,如Apache-2.0许可证中定义的,应如上双许可,无任何附加条款或条件。