A Rust library to imitate virtual filesystem. Used by me to link files in my applications
```rust use std::collections::HashMap;
use kindavirtualfs::*;
// 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); ```
Author: Nikita Podvirnyy
Licensed under GNU GPL 3.0