quantus_cli/config/mod.rs
1//! Configuration management module
2//!
3//! This module handles runtime compatibility information.
4
5/// List of runtime spec versions that this CLI is compatible with
6pub const COMPATIBLE_RUNTIME_VERSIONS: &[u32] = &[112];
7
8/// Check if a runtime version is compatible with this CLI
9pub fn is_runtime_compatible(spec_version: u32) -> bool {
10 COMPATIBLE_RUNTIME_VERSIONS.contains(&spec_version)
11}