#config-file #home

home-config

Use configuration file in the HOME directory

1 unstable release

0.6.0 Nov 1, 2022
0.5.0 Sep 14, 2022
0.4.0 May 24, 2022
0.3.0 May 23, 2022
0.1.0 Mar 5, 2022

#915 in Configuration

Download history 148/week @ 2024-11-30 104/week @ 2024-12-07 116/week @ 2024-12-14 96/week @ 2024-12-21 46/week @ 2024-12-28 90/week @ 2025-01-04 94/week @ 2025-01-11 124/week @ 2025-01-18 54/week @ 2025-01-25 247/week @ 2025-02-01 153/week @ 2025-02-08 87/week @ 2025-02-15 127/week @ 2025-02-22 116/week @ 2025-03-01 155/week @ 2025-03-08 103/week @ 2025-03-15

509 downloads per month
Used in wpe

MIT license

14KB
230 lines

home-config

Crates.io docs.rs LICENSE

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