Use configuration file in the HOME directory
```rust use home_config::HomeConfig;
let config = HomeConfig::withconfigdir("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.readtostring().unwrap(); // 123456789 ```
json
yaml
toml
toml
home-config = { version = "*", features = ["json", "yaml", "toml"] }
```rust use home_config::HomeConfig; use serde::{Deserialize, Serialize};
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::
// Save to file config.save_json(&people).unwrap(); ```