YAML to TOML
Convert YAML directly into TOML — handy when migrating config files between tools that expect different formats.
About this tool
Converts YAML directly into TOML — useful when migrating a config file between tools that expect different formats (for example, moving settings from a Docker Compose-style YAML file into a Cargo.toml-style structure). Nested YAML mappings become TOML [section] tables, and lists of mappings become [[array-of-tables]] blocks.
This covers the common subset of TOML — strings, numbers, booleans, inline arrays, nested tables, and arrays of tables. YAML-specific features without a TOML equivalent (like null/~ values, anchors, or multi-document files) aren't supported; null fields are simply omitted from the output.
Version 1.0.0