Once we implement
We will need a CLI tool that outputs the data in a human readable form, for example csv (csv is a great crate for that), but I'm open to propositions.
Let's place the crate in a new /tools/ directory. It should take a file as an input and print the logs converted to csv. I recommend using clap with derive macro for user input (see xtask for example usage).
Once we implement
We will need a CLI tool that outputs the data in a human readable form, for example csv (csv is a great crate for that), but I'm open to propositions.
Let's place the crate in a new
/tools/directory. It should take a file as an input and print the logs converted to csv. I recommend using clap with derive macro for user input (see xtask for example usage).