configstore 0.1.2

Library to store configurations of applications locally without having to worry about directories or platforms
Documentation

Configstore crates.io status

Configstore is a library that allows you to store your configurations locally without having to worry about the directories or the platform

Usage

To use configstore, add this to your Cargo.toml:

[dependencies]
configstore = "0.1.1"

Initialize your Configstore

use configstore::{Configstore, AppUI};
fn main() {
    let config_store = Configstore::new("myApp", AppUI::CommandLine).unwrap();
}

Set and get values

Configstore supports any value that implements Deserialize and Serialize

use serde_derive::*;
use configstore::{Configstore, AppUI};

#[derive(Deserialize, Serialize, Eq, PartialEq, Debug, Clone)]
struct Value {
    text: String,
    num: u32
}

let config_store = Configstore::new("myApp", AppUI::CommandLine).unwrap();

let value = Value {text: "hello world".to_string(), num: 4343};
config_store.set("key", value.clone()).unwrap();

let same_value: Value = config_store.get("key").unwrap();
assert_eq!(value, same_value);

Configstore will store the configuration files under your platforms native config directory based on platform-dirs

Contributing

All contributions are welcome, feel free to file an issue or even a pull-request 🤝

License

This project is licensed under the Mozilla Public License 2.0