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.
 *
 ******************************************************************************/
//! Crate root re-exports (`lib.rs`) smoke test.

#[test]
fn crate_public_api_is_reachable() {
    let _ = qubit_config::Config::new();
}

#[test]
fn crate_public_modules_are_reachable() {
    fn assert_from_config<T: qubit_config::from::FromConfig>() {}

    assert_from_config::<u16>();
    let _ = qubit_config::options::ConfigReadOptions::default();
    let _ = qubit_config::field::ConfigField::<bool>::builder()
        .name("enabled")
        .build();
}