Use configuration file in the HOME directory
```rust use home_config::HomeConfig; use serde::{Deserialize, Serialize};
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::
// Save to file config.save(&options).unwrap(); ```