Binary Enclave allows storing configuration data in a binary directly. You will probably never find a good reason for doing this. This is primarily an exercise for learning rust and something I found interesting. The idea originates from the Wraith Botpack [https://github.com/wraith/wraith].
```rust use binary_enclave::{enclave, Enclave}
pub static CONFIG: Enclave
fn main() { let conf = CONFIG.decode()?; let res = CONFIG.write(&Config{ some: 43, values: "see" })?; } ```