12个版本
0.2.10 | 2023年1月28日 |
---|---|
0.2.9 | 2023年1月28日 |
0.1.0 | 2022年8月27日 |
在配置分类中排名第295
每月下载量25次
175KB
446 行
dotent-rs
用于处理Entry文件(.ent
)的crate。
用法
use dotent::entry::Entry;
fn main() {
// Read Entry file.
let mut entry = Entry::read_file("./path/to/file.ent").unwrap();
// Get the project data of Entry file.
let project = entry.project();
println!("{}", project.name);
// Get assets in Entry file.
let assets = entry.assets();
let keys = assets.keys();
println!("{:#?}", keys);
}
依赖项
~5–14MB
~193K SLoC