Simple storage for env variables with typings

ConfigLoader::new(..) returns error if one or more values cannot be read from .env file or any of provided constraints are violated; It is expected behaviour because you don't want to start application without required env values.

If you're trying to get a value with a type that mismatched type in schema you will get an error. Package should not panic in any case.

Using with macro

rust let env_values = convert_values! { PORT: int, // typing is anything possible to lovercase to i32, int, integer: Int,int,INT,Integer,I32,etc.. HOST: str, // same rule for str | string CRITICAL_FLAG: bool, // same rule for bool | boolean LONG_VAR: i64 // same rule for i64 | long }; let store = ConfigLoader::new(env_values, None).unwrap(); // second arg for custom env file let port: i32 = store.get("PORT").unwrap(); let host: String = store.get("HOST").unwrap(); let flag: bool = store.get("CRITICAL_FLAG").unwrap(); let num: i64 = store.get("LONG_VAR").unwrap();

Supported types

After name of variable and type devided by ':' you can add constraints devided by "=>" ```rust let envvalues = convertvalues! { PORT: int => min(1000) max(2000),
HOST: str => min(10),
CRITICALFLAG: bool => optional, LONGVAR: i64 => min(10000),
NOTEMPTYSTR_VALUE:str => notEmpty };

```

Supported constraints:

Trailing comma is not supported.

Using with custom file

rust let env_values = convert_values! { PORT: int, HOST: str, }; let store = ConfigLoader::new(env_values, Some(".env.test")).unwrap(); let port: i32 = store.get("PORT").unwrap(); let host: String = store.get("HOST").unwrap();