include-base64 0.1.0

A macro to include a file as a base64-encoded string at compile time
Documentation
1
2
3
4
5
6
7
# `include-base64`


A macro to include a file as a base-64 encoded string literal at compile time.

```rust
const MY_FILE_BUT_IN_BASE64: &str = include_base64!("my_file.txt");
```