decl-lang 0.3.0

Decl — a declarative language for describing, generating, and validating structured data: the `decl` CLI (check / evaluate / validate / fmt) and the `decl-lsp` language server, implemented natively in Rust
Documentation
1
2
3
4
//! The `decl` binary — check / evaluate / validate / fmt (cli.rs).
fn main() {
    std::process::exit(decl_lang::cli::main(std::env::args().skip(1).collect()));
}