4个版本 (2个重大更新)
0.2.0 | 2021年7月31日 |
---|---|
0.1.0 | 2021年7月3日 |
0.0.1 | 2021年7月3日 |
0.0.0 | 2020年1月1日 |
#1017 在 数据结构
每月429次下载
在 2 crate 中使用
7KB
111 行
temptree:临时文件树
lib.rs
:
Temptree创建临时文件树
use temptree::temptree;
let tree = temptree! {
foo: "a",
bar: {
baz: "b",
},
};
let foo_contents = std::fs::read_to_string(tree.path().join("foo")).unwrap();
assert_eq!(foo_contents, "a");
let baz_contents = std::fs::read_to_string(tree.path().join("bar/baz")).unwrap();
assert_eq!(baz_contents, "b");
依赖项
~2–10MB
~107K SLoC