vow-yaml
vow-yaml parses and serializes YAML in a JSON-compatible subset. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-yaml@0.1.0vpm installQuick start
Section titled “Quick start”import vyaml from vow_yaml
fn main(caps: Caps) -> int { let doc = match vyaml.parse("name: Ada\nscore: 99\n") { Ok(d) => d, Err(_e) => return 1, }; print vyaml.format(doc); return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-yaml && vow test tests/yaml.vow