Read the directory recursively, and creates a HashMap
with these contents at compile time with the file path as the key.
Add this to your Cargo.toml
:
toml
[dependencies]
include_dir_bytes = "0.2"
and use it like this:
```rust
// ...
let filemap = includedir!("path/to/dir"); ```