jsontoml

Crates.iojsontoml
lib.rsjsontoml
version0.2.24
created_at2025-10-01 13:05:19.746125+00
updated_at2026-01-22 08:20:47.485121+00
descriptionConvert a JSON file to TOML on the CLI
homepage
repositoryhttps://github.com/pepa65/jsontoml
max_upload_size
id1862563
size12,269
pepa65 (pepa65)

documentation

README

version build dependencies docs license downloads

jsontoml 0.2.24

Convert a JSON file to TOML on the CLI

Usage

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

Example

  • Input: input.json:
{"key": "value", "key2": "value2"}
  • Command: jsontoml input.json >output.toml
  • Output: output.toml:
"key" = "value"
"key2" = "value2"
Commit count: 53

cargo fmt