qubit-config 0.12.2

Powerful type-safe configuration management with multi-value properties, variable substitution, and rich data type support
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/

//! Parsing support for typed configuration reads.

mod config_parse_context;
mod from_config;
mod helpers;
mod into_config_default;

pub use config_parse_context::ConfigParseContext;
pub use from_config::FromConfig;
pub use into_config_default::IntoConfigDefault;

pub(crate) use helpers::{
    is_effectively_missing, is_effectively_missing_with_substitution, parse_property_from_reader,
    parse_property_from_reader_with_substitution,
};