3 unstable releases
0.2.0 | Jun 29, 2023 |
---|---|
0.1.1 | Apr 26, 2023 |
0.1.0 | Apr 26, 2023 |
#825 in Configuration
23 downloads per month
15KB
240 lines
lib_config
JSON Configuration Library in Rust
Usage
Dependency
Copy into your [dependencies]
section of your Cargo.toml file
lib_config = "0.1.0"
Example
Code taken from the tests
//example: open (or create) a config, then write and read a value
{
let mut conf = config::open_from_home(".lib_config", "conftest.json").unwrap();
conf.write_value("val0", 100).unwrap();
let val0: i32 = conf.read_value("val0").unwrap();
assert_eq!(val0, 100);
conf.save().unwrap();
}
//example: create & write a config section
{
let mut conf = config::open_from_home(".lib_config", "conftest.json").unwrap();
conf.write_value("sect0", json!({
"val0" : 10,
"val1" : "foo"
})).unwrap();
conf.save().unwrap();
}
///example: get and read from config section
{
let conf = config::open_from_home(".lib_config", "conftest.json").unwrap();
let sect0 = conf.get_section("sect0").unwrap();
let val0 : i32 = sect0.read_value("val0").unwrap();
let val1: String = sect0.read_value("val1").unwrap();
assert_eq!(val0, 10);
assert_eq!(val1, String::from("foo"));
}
The resulting config file will be
{
"sect0": {
"val0": 10,
"val1": "foo"
},
"val0": 100
}
Licence
Licenced under
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Dependencies
~0.8–11MB
~79K SLoC