orion-conf
Lightweight, feature‑gated config IO for Rust. Enable only the formats you need.
Quick Start
use ;
use ;
Features
- Formats (opt‑in):
yaml,toml,json,ini - Combined:
formats(all),full(all) - Default features: empty
Key Traits (0.3+)
ConfigIO: unified read/write with feature‑based priorityYamlIO/TomlIO/JsonIO/IniIO: explicit format IO
Examples
- JSON only:
cargo run --example json_feature_test --features json - YAML+JSON priority:
cargo run --example feature_priority_test --features yaml,json
Migration
- See MIGRATION.md for 0.2.x → 0.3.0 changes and API replacements.