📝 rwconfig
Read/write config files with get/set and dirty-tracking; save() writes all changes at once
Quick start
Usage
//! Demo: RWConfig getter/setter pattern.
//!
//! Loads a config file, reads values via `get()`, modifies via `set()` (which marks dirty),
//! and persists all changes with a single `save()`.
use RWConfig;
use json;
License
Published under the Apache-2.0 license. Made by @UnRUST 💛
🛠️ auto updated with automd-rs