v0.1.0 – Initial Release
Added
- Initial release of
loadstructure. - Loading and saving configurations in JSON, YAML, XML, TOML, INI/DEF formats.
- Attribute-style access (
cfg.app.name) and dictionary-style access (cfg["app"]["name"]). - Merging multiple configuration files with precedence.
- Nested key access via dotted-path (
cfg.get("app.ui.theme"),cfg.set("app.ui.theme", "dark")).