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 • Rust 包仓库 7/week @ 2024-03-07 • Rust 包仓库 1/week @ 2024-03-14 • Rust 包仓库 20/week @ 2024-03-28 • Rust 包仓库 11/week @ 2024-04-04 • Rust 包仓库 3/week @ 2024-04-18 • Rust 包仓库 243/week @ 2024-04-25 • Rust 包仓库 128/week @ 2024-05-02 • Rust 包仓库 97/week @ 2024-05-09 • Rust 包仓库 218/week @ 2024-05-16 • Rust 包仓库

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

无运行时依赖