home-config

Crates.io docs.rs LICENSE

Use configuration file in the HOME directory

Usage

```rust use home_config::HomeConfig; use serde::{Deserialize, Serialize};

[derive(Serialize, Deserialize, Default)]

struct Options { name: String, age: u32, }

let config = HomeConfig::new("app", "config.json"); // macOS: /Users/name/.config/app/config.json // Linux: /home/name/.config/app/config.json // Windows: C:\Users\name\app\config.json

// Parse let options = config.parse::().unwrapordefault(); // options.name == "XiaoMing"; // options.age == 18;

// Save to file config.save(&options).unwrap(); ```