Back to tools
/
JSON ↔ TOML
Ctrl
K
EN
JSON ↔ TOML
Bidirectional conversion between JSON and TOML
Sample
Copy
Clear
JSON → TOML
TOML → JSON
JSON Input
{ "package": { "name": "tools-eubyt", "version": "0.1.0", "edition": "2024" }, "dependencies": { "serde": "1.0", "tokio": { "version": "1.0", "features": [ "full" ] } } }
TOML Output
[package] name = "tools-eubyt" version = "0.1.0" edition = "2024" [dependencies] serde = "1.0" [dependencies.tokio] version = "1.0" features = [ "full" ]