Why convert JSON to TOML?
You are migrating configuration to a tool that speaks TOML — Cargo, Poetry, Netlify — and your current config is JSON. Paste it above and get idiomatic TOML with proper tables and arrays of tables, ready to commit.
How it works
The converter parses your JSON locally and writes TOML 1.0: nested objects become tables, arrays of objects become arrays of tables, and strings are quoted and escaped per the specification. JSON that cannot be represented (null values, non-object root) is rejected with an error instead of being silently altered.