jsonc_tools 0.0.1

jsonc_tools: Tools to deal with `jsonc` files. See, [JSON with Comments](https://code.visualstudio.com/docs/languages/json#_json-with-comments) and [jsonc](https://komkom.github.io/) (A Json like file format with comments). See, [User and Workspace Settings](https://code.visualstudio.com/docs/getstarted/settings) and [Settings - vscode](https://vscode.readthedocs.io/en/latest/getstarted/settings/) for example files.
Documentation
# `TODO`

![WORK-IN-PROGRESS](https://img.shields.io/badge/TODO-WORK--IN--PROGRESS-red?style=for-the-badge&logo=markdown&maxAge=604800&cacheSeconds=604800)

---

## TODO

* Read from stdin for records to process instead of file.
* https://docs.rs/env_logger/
* GitHub pages using VuePress? https://vuepress.vuejs.org/guide/deploy.html#github-pages

### https://endler.dev/2020/rust-compile-times/

Remove Unused Dependencies

So let's say you tried all of the above and find that compilation is still slow. What now?

Dependencies sometimes become obsolete thanks to refactoring. From time to time it helps to check if all of them are still needed to save compile time.

If this is your own project (or a project you like to contribute to), do a quick check if you can toss anything with cargo-udeps:

cargo install cargo-udeps && cargo +nightly udeps