2个版本
使用旧的Rust 2015
0.1.1 | 2021年11月9日 |
---|---|
0.1.0 | 2019年5月26日 |
#1375 在 编码
38KB
442 行
hrx.rs
HRX纯文本归档格式的Rust实现。
文档
特别感谢
在Patreon上支持进一步开发的所有人,特别是
- ThePhD
- Embark Studios
- Jasper Bekkers
lib.rs
:
HRX纯文本归档格式的Rust实现。
有关格式的详细信息,请参阅 google/hrx
仓库。
示例
let input_text = "<===> input.scss
ul {
li {
list-style: none;
}
}
<===>
Generated files
<===> out/
<===> out/input.css
ul li {
list-style: none;
}
";
let mut archive = HrxArchive::from_str(input_text)?;
assert_eq!(archive.comment, None);
assert_eq!(archive.entries,
[(HrxPath::from_str("input.scss")?,
HrxEntry {
comment: None,
data: HrxEntryData::File {
body: Some("ul {\n li {\n list-style: none;\n }\n}\n".to_string()),
},
}),
(HrxPath::from_str("out")?,
HrxEntry {
comment: Some("Generated files".to_string()),
data: HrxEntryData::Directory,
}),
(HrxPath::from_str("out/input.css")?,
HrxEntry {
comment: None,
data: HrxEntryData::File {
body: Some("ul li {\n list-style: none;\n}\n".to_string()),
},
})].iter().cloned().collect());
archive.entries.remove(&HrxPath::from_str("out")?);
archive.comment = Some("Snapshot of commit 264a050c".to_string());
let mut out = vec![];
archive.serialise(&mut out).unwrap();
assert_eq!(String::from_utf8(out).unwrap(), "<===> input.scss
ul {
li {
list-style: none;
}
}
<===> out/input.css
ul li {
list-style: none;
}
<===>
Snapshot of commit 264a050c");
特别感谢
在Patreon上支持进一步开发的所有人,特别是
- ThePhD
- Embark Studios
- Jasper Bekkers
依赖项
~0.6–1.6MB
~29K SLoC