rcman 0.1.3

Framework-agnostic settings management with schema, backup/restore, secrets and derive macro support
Documentation
1
2
3
4
5
6
7
8
# TODO

## Future Improvements (Post v0.1.2)

- [ ] **Type-Safe Setting Accessors via Derive Macro**
    - Currently users must call `manager.get::<T>("category.key")?`.
    - The goal is to generate typed accessors like `settings.ui_theme()` via the `SettingsSchema` derive macro.
    - This would eliminate magic strings and provide better IDE autocomplete.