json2toml

Crates.iojson2toml
lib.rsjson2toml
version0.1.1
sourcesrc
created_at2023-01-13 11:26:29.281862
updated_at2023-01-13 11:26:29.281862
descriptionA simple CLI tool to convert json files into toml format.
homepage
repositoryhttps://github.com/voidei/json2toml
max_upload_size
id757860
size15,075
Dawn Walker (voidei)

documentation

README

json2toml

A simple CLI tool that converts json files to toml files. The created file's name matches the input file, but with the .toml extension instead of .json.

Inspired heavily by toml2json.

Usage:

json2toml [filename]

Example:

Input:

// file.json
{
    "key": "value"
}

Output:

# output.toml
key = "value"

Commit count: 18

cargo fmt