home-config

Crates.io docs.rs LICENSE

Use configuration file in the HOME directory

Usage

```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 ```

Serde format support

toml home-config = { version = "*", features = ["json", "yaml", "toml", "hcl"] }

A JSON example:

```rust 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::().unwrap(); // people.name == "XiaoMing"; // people.age == 18;

// Save to file config.save_json(&people).unwrap(); ```