1 unstable release
0.6.0 | Nov 1, 2022 |
---|---|
0.5.0 |
|
0.4.0 |
|
0.3.0 |
|
0.1.0 |
|
#645 in Configuration
446 downloads per month
Used in 3 crates
14KB
230 lines
home-config
Use configuration file in the HOME directory
Usage
use home_config::HomeConfig;
let config = HomeConfig::with_config_dir("app", "config");
// Linux: /home/name/.config/app/config
// macOS: /Users/name/.config/app/config
// Windows: C:\Users\name\.config\app\config
// Write
config.save("123456789").unwrap();
// Read
let data = config.read_to_string().unwrap();
// 123456789
Serde format support
home-config = { version = "*", features = ["json", "yaml", "toml", "hcl"] }
A JSON
example:
use home_config::HomeConfig;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Default)]
struct People {
name: String,
age: u32,
}
let config = HomeConfig::with_file("test.json");
// Linux: /home/name/test.json
// macOS: /Users/name/test.json
// Windows: C:\Users\name\test.json
// Parse
let people = config.json::<People>().unwrap();
// people.name == "XiaoMing";
// people.age == 18;
// Save to file
config.save_json(&people).unwrap();
Dependencies
~0–1.4MB
~26K SLoC