convfmt is a command line tool which can convert between formats: * json * yaml * toml
bash
$ convfmt < cfg.yml > cfg.toml --from yaml --to toml
$ cat cfg.toml | convfmt -f toml -t json --compact > cfg.json
$ curl https://api.github.com/users/oriontvv | convfmt --from json --to yaml
Some formats allow to use compact
and pretty
(default) options
cargo install convfmt
This tool stands on the shoulders of such giants: * serde * serdejson * serdeyaml * toml-rs