TOML is the configuration format of Cargo, poetry, pip and a generation of tooling — and JSON is the lingua franca every API and store speaks. When a .toml file has to feed a JSON consumer, you need a real parse: tables to objects, [[headers]] to arrays, values to their native types, not a text patchwork.
Convert TOML to JSON parses standard TOML into a clean JSON document. Tables, arrays of tables, dotted keys, inline arrays and inline tables are all resolved, comments are stripped, and values keep their types.