| Crates.io | jsontoml |
| lib.rs | jsontoml |
| version | 0.2.24 |
| created_at | 2025-10-01 13:05:19.746125+00 |
| updated_at | 2026-01-22 08:20:47.485121+00 |
| description | Convert a JSON file to TOML on the CLI |
| homepage | |
| repository | https://github.com/pepa65/jsontoml |
| max_upload_size | |
| id | 1862563 |
| size | 12,269 |
Convert a JSON file to TOML on the CLI
jsontoml 0.2.24 - Convert a JSON file to TOML on the CLI
Usage: jsontoml [input]
Arguments:
[input] JSON file to convert to TOML
Options:
-h, --help Print help
-V, --version Print version
input.json:{"key": "value", "key2": "value2"}
jsontoml input.json >output.tomloutput.toml:"key" = "value"
"key2" = "value2"