1 个不稳定版本
0.1.1 | 2022 年 7 月 26 日 |
---|---|
0.1.0 |
|
在 文件系统 中排名 1247
每月下载次数为 485 次
15KB
86 代码行
🦀 kinda-virtual-fs
A Rust 库用于模拟虚拟文件系统。我用它来在我的应用程序中链接文件
示例
use std::collections::HashMap;
use kinda_virtual_fs::*;
// File `../assets/icon.png` will be statically linked by the rust compiler
let storage = Storage::new(HashMap::from([
("icon", include_bytes!("../assets/icon.png"))
]));
let path = storage.map("icon").unwrap();
println!("Icon was saved as {}", path);
许可协议:GNU GPL 3.0