| Crates.io | opencli |
| lib.rs | opencli |
| version | 0.1.1 |
| created_at | 2025-08-30 18:40:34.778013+00 |
| updated_at | 2025-09-05 16:54:01.267331+00 |
| description | OpenCLI struct definitions for serializing and deserializing |
| homepage | |
| repository | https://github.com/FantasyTeddy/opencli |
| max_upload_size | |
| id | 1817827 |
| size | 17,798 |
This crate provides structures and support for serializing and deserializing OpenCLI specifications.
use opencli::OpenCliDocument;
fn main() {
let opencli = OpenCliDocument::from_path("path/to/opencli.yaml").unwrap();
println!("{opencli:#?}");
}