env_parser 0.1.10

Env parser. Parse your env file and create a Rust file with mapped properties
Documentation
1
2
3
4
5
6
7
pub const SOME_KEY: &'static str = "SOME_VALUE";
// this is a comment
pub const SOME_KEY_WITH_COMMENT: i32 = 1i32;
pub const SOME_I64_VAL: i64 = 123i64;
pub const SOME_F32: f32 = 1f32;
pub const ANOTHER_F32: f32 = 0.1f32;
pub const BOOL_TRUE: bool = true;