Simple way to use include_bytes! for directories.
Why
I wanted to include a directory for my microcontroller project, but none of the solutions I used before seems to work in a no_std environment.
Example
You can embed files three ways.
Bytes mode
use Embed;
// Path is relativ to the current file
// Is the default. Can be omitted.
;
Str mode
use Embed;
// Path is relativ to the current file
;
Mime mode
Same as "Bytes mode" but also add the guessed mime type from mime_guess.
Defaults to application/octet-stream for unknown types.
use Embed;
// Path is relativ to the current file
;