jsontoml 0.2.25

Convert a JSON file to TOML on the CLI
jsontoml-0.2.25 is not a library.

version build dependencies docs license downloads

jsontoml 0.2.25

Convert a JSON file to TOML on the CLI

Usage

jsontoml 0.2.25 - 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"