//! Configuration management module
//!//! This module handles runtime compatibility information.
/// List of runtime spec versions that this CLI is compatible with
pubconstCOMPATIBLE_RUNTIME_VERSIONS:&[u32]=&[123];/// Check if a runtime version is compatible with this CLI
pubfnis_runtime_compatible(spec_version:u32)->bool{COMPATIBLE_RUNTIME_VERSIONS.contains(&spec_version)}