7 releases

new 0.2.1 Apr 18, 2024
0.2.0 May 25, 2022
0.1.4 Nov 21, 2021
0.1.3 Mar 10, 2021

#211 in Configuration

Download history 20/week @ 2024-02-19 5/week @ 2024-02-26 4/week @ 2024-03-11 5/week @ 2024-04-01 148/week @ 2024-04-15

153 downloads per month

MIT license

10KB
150 lines

Crates.io Documentation License Workflow Status

appconfig

A simple configuration file manager for desktop applications.

The configuration file is read from and written to the following locations.

Platform Value Example
Linux $XDG_DATA_HOME or $HOME/.local/share /home/alice/.local/share
macOS $HOME/Library/Application Support /Users/Alice/Library/Application Support
Windows {FOLDERID_LocalAppData} C:\Users\Alice\AppData\Local

Usage

cargo add appconfig serde
use std::{cell::RefCell, rc::Rc};
use appconfig::AppConfigManager;
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, PartialEq)]
struct MyAppConfig {
  window_pos: (u32, u32),
}

impl Default for MyAppConfig {
  fn default() -> Self {
    Self {
      window_pos: (320, 280),
    }
  }
}

fn main() {
  let config = Rc::from(RefCell::from(MyAppConfig::default()));
  let manager = AppConfigManager::new(
    config.clone(),
    std::env!("CARGO_CRATE_NAME"), // CRATE_BIN_NAME etc..,
    "sumibi-yakitori",
  );

  manager.save().unwrap();
  manager.load().unwrap();
  assert_eq!(*config.borrow(), MyAppConfig::default());
}

Dependencies

~0.7–1.7MB
~34K SLoC