5 个版本
0.2.0 | 2022年2月1日 |
---|---|
0.1.4 | 2021年5月8日 |
0.1.2 | 2019年7月15日 |
0.1.1 | 2019年2月15日 |
0.1.0 | 2019年2月15日 |
1434 在 文件系统 中
每月 101 次下载
6KB
89 行
hrx-get
可读归档格式规范位于 https://github.com/google/hrx。
此 crate 仅支持 读取 .hrx
数据。
lib.rs
:
实现简单读取可读归档 (.hrx) 数据。
可读归档格式规范位于 https://github.com/google/hrx。
此 crate 仅支持 读取 .hrx
数据。
示例
let archive = Archive::parse(
"<===> one.txt\n\
Content of one text file\n\
<===>\n\
This is a comment\n\
<===> subdir/file.txt\n\
Contents of a file in a subdir.\n\
<===>\n"
)?;
assert_eq!(archive.get("one.txt"), Some("Content of one text file"));