``` confmap A library for reading config file into a map in memory. This library is based on serdejson and oncecell. after the config file is read, you can easily get the config by using getstring, getint64, get_bool... This library is created because I cannot find a library like this in rust. (the idea is the same to viper package in golang)
example: put a json format file in your project folder like this: config.json { "testGetString": "YesMan", "testGetInt64": 43, "testGetStringArray": [ "+44 1234567", "+44 2345678" ] } add dependency in Cargo.toml: [dependencies] confmap = "1.0.0"
in your project main.rs: use confmap;
fn main() { confmap::addconfigpath(pathstr); confmap::setconfigname("config.json"); confmap::readconfig(); asserteq!(Some("YesMan".tostring()), confmap::getstring("testGetString")); asserteq!(Some(43), confmap::getint64("testGetInt64")); asserteq!(Some(vec!["+44 1234567".tostring(), "+44 2345678".tostring()]), confmap::getstringarray("testGetStringArray")); } ```