#可读性 # #可读 #归档 #数据 #读取器

hrx-get

可读归档 (.hrx) 数据的读取器

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文件系统

Download history 7/week @ 2024-03-07 1/week @ 2024-03-14 20/week @ 2024-03-28 11/week @ 2024-04-04 3/week @ 2024-04-18 243/week @ 2024-04-25 128/week @ 2024-05-02 97/week @ 2024-05-09 218/week @ 2024-05-16

每月 101 次下载

MIT/Apache

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"));

无运行时依赖