Command-line TOML parser
Go to file
Emma Tebibyte 3ec60dbc04 arrays!!!!! 2022-12-19 13:51:28 -05:00
src arrays!!!!! 2022-12-19 13:51:28 -05:00
Cargo.lock initial commit: reads table-less keys from argument only 2022-12-18 00:37:13 -05:00
Cargo.toml better release profile 2022-12-17 23:07:13 -05:00
LICENSE initial commit, handles normal keys and prints full arrays 2022-11-06 14:25:37 -05:00
README.md update README 2022-12-19 00:46:16 -05:00

README.md

tomcat a minimal TOML parser for the command line.

Installation

From Source

  1. Run cargo --install --git https://git.tebibyte.media/emma/tomcat.git
  2. ???
  3. Profit

Usage

To get the value of key from the main table in file.toml:

tomcat main.key file.toml

To get the top-level key notable from file.toml:

tomcat notable file.toml

To get index 3 in array arr inside the main table in file.toml:

tomcat main.arr[3] file.toml