wcl 0.8.0-alpha

WCL (Wil's Configuration Language) — a typed, block-structured configuration language
1
2
3
4
5
6
7
8
9
10
11
12
//! WCL — Wil's Configuration Language (CLI crate)
//!
//! This crate provides the CLI binary and re-exports the language library
//! from `wcl_lang` for backward compatibility.
#![allow(clippy::result_large_err)]

// Re-export the entire language library
pub use wcl_lang::*;

// CLI-only modules
#[cfg(not(target_arch = "wasm32"))]
pub mod cli;