The comparer parses TOML before diffing, so tables, inline tables, arrays, and scalar values are compared by their data structure. This is more useful than a raw text diff when table order or formatting changes.
Use it to review Cargo.toml, pyproject.toml, and other TOML configuration changes. Sorting keys can reduce noise, while the side-by-side view keeps the original and changed file easy to compare.
Parsing and comparison run locally in JavaScript. That keeps dependency versions, credentials, or environment-specific settings from being uploaded while you inspect the diff.
Common questions and answers about this topic.
Compares two TOML documents and highlights differences — added, removed, and modified fields.
Yes, deep comparison works on all nesting levels including inline tables.
Yes, it works with any valid TOML including Cargo.toml, pyproject.toml, etc.
No, TOML comparison happens entirely in your browser. Both documents are parsed and compared locally — no data is uploaded.