qubit-config 0.11.1

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;

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

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