/opencli

OpenCLI schema serialization for Rust

Primary LanguageRustMIT LicenseMIT

opencli

Crates.io Documentation

This crate provides structures and support for serializing and deserializing OpenCLI specifications.

Examples

use opencli::OpenCliDocument;

fn main() {
    let opencli = OpenCliDocument::from_path("path/to/opencli.yaml").unwrap();

    println!("{opencli:#?}");
}