This crate allows you to create constant arrays from encoded string literals as well as take them directly from the env variable.
bash
cargo add env-to-array
Get from env variable string, decode it from format and put integer array as result
The bs58
feature should be enabled (enabled by default)
```rust /// Get array from env variable encoded by base58 const BS58ENVID: [u8; 17] = envtoarray::bs58envtoarray!("ENVTOARRAY_BS58");
/// Get array from constant encoded by base58 const BS58ID: [u8; 17] = envtoarray::bs58to_array!("dwVAPpaonY26V6JH17ToUQ"); ```
The bs64
feature should be enabled (enabled by default)
```rust /// Get array from env variable encoded by base64 const BS64ENVID: [u8; 32] = envtoarray::bs64envtoarray!("ENVTOARRAY_BS64");
/// Get array from constant encoded by base64 const BS64ID: [u8; 32] = envtoarray::bs64to_array!("W7MmhbfqLQc4LbN0TUPfiflxSO6uVZ7E0NH+76LueJ0="); ```
The hex
feature should be enabled (enabled by default)
```rust /// Get array from env variable encoded by hex const HEXENVID: [u64; 64] = envtoarray::hexenvtoarray!("ENVTOARRAY_HEX");
/// Get array from constant encoded by hex const HEXID: [u64; 64] = envtoarray::hexto_array!("5bb32685b7e5bb32685b7ea2d07382db3744d43df89f97148eeae559ec4d0d1feefa2ee789da2d07382db3744d43df89f97148eeae559ec4d0d1feefa2ee789d"); ```