holoconf-core: Configuration library with resolver support
This crate provides the core functionality for loading, parsing, and resolving configuration files with interpolation support.
Example
use Config;
let yaml = r#"
database:
host: localhost
port: 5432
"#;
let config = from_yaml.unwrap;
assert_eq!;