updated README to latest featureset

This commit is contained in:
Emma Tebibyte 2022-12-19 14:01:28 -05:00
parent 3ec60dbc04
commit f404de7a2d
1 changed files with 15 additions and 5 deletions

View File

@ -8,16 +8,26 @@
2. ???
3. Profit
Also make sure that your cargo `bin` directory (by default in
`"$CARGO_HOME"/bin`) is in your `$PATH`; I recommend symlinking the folder to
`"$HOME/.local/bin` and adding that to your user `$PATH`.
## Usage
To get the value of `key` from the `main` table in `file.toml`:
Assuming the TOML file being parsed is `file.toml`:
`tomcat main.key file.toml`
To get the top-level key `notable` from `file.toml`:
To get the value of top-level key `notable`:
`tomcat notable file.toml`
To get index `3` in array `arr` inside the `main` table in `file.toml`:
To get the value of `key` from the `main` table:
`tomcat main.key file.toml`
To get the value of `key` from the subtable `subtab` in table `main`:
`tomcat main.subtab.key file.toml`
To get the value of index `3` in array `arr` in table `main`:
`tomcat main.arr[3] file.toml`