8 releases (5 stable)

1.3.1 Aug 5, 2023
1.3.0 Jan 2, 2022
1.2.0 Aug 26, 2021
1.0.0 Mar 17, 2021
0.9.12 Mar 17, 2021

#606 in Encoding

Download history 224/week @ 2024-11-15 241/week @ 2024-11-22 153/week @ 2024-11-29 200/week @ 2024-12-06 202/week @ 2024-12-13 51/week @ 2024-12-20 28/week @ 2024-12-27 88/week @ 2025-01-03 263/week @ 2025-01-10 314/week @ 2025-01-17 148/week @ 2025-01-24 213/week @ 2025-01-31 225/week @ 2025-02-07 248/week @ 2025-02-14 183/week @ 2025-02-21 242/week @ 2025-02-28

924 downloads per month

MIT license

8KB
55 lines

toml2json

CI Crates.io

A command-line tool that converts TOML to JSON. Nothing more, nothing less.

Installation

Cargo

$ cargo install toml2json

Nixpkgs

nix-env --install toml2json

Please let us know if you package toml2json for another package manager or ecosystem!

Usage

Convert TOML on stdin to JSON, filtering it through jq:

$ toml2json <<< 'wow = "amazing"' | jq

Produces:

{
  "wow": "amazing"
}

Convert TOML from a file and pretty-print it without jq:

$ toml2json --pretty ~/.config/kbs2/kbs2.conf

Produces:

{
  "age-backend": "RageLib",
  "error-hook": "~/.config/kbs2/hooks/error-hook-notify",
  "keyfile": "REDACTED-GO-AWAY",
  "public-key": "REDACTED-GO-AWAY",
  "reentrant-hooks": false,
  "store": "~/.kbs2-store",
  "wrapped": true,
  "generators": [
    {
      "alphabet": "abcdefghijklmnopqrstuvwxyz0123456789(){}[]-_+=",
      "length": 16,
      "name": "default"
    }
  ],
  "commands": {
    "edit": {
      "editor": "subl -w",
      "post-hook": "~/.config/kbs2/hooks/push-repo"
    },
    "new": {
      "generate-on-empty": true,
      "post-hook": "~/.config/kbs2/hooks/push-repo"
    },
    "pass": {
      "clear-after": true,
      "clear-hook": "~/.config/kbs2/hooks/pass-clear-notify",
      "clipboard-duration": 10,
      "x11-clipboard": "Clipboard"
    },
    "rm": {
      "post-hook": "~/.config/kbs2/hooks/push-repo"
    }
  }
}

Amazing. What more could you want? Hopefully nothing, because it will never do anything else.

Dependencies

~1.8–2.8MB
~54K SLoC