This tool helps you convert CSV files from one format to another.
It is written in Rust.
Currently the tool can only be used through the command line.
You have two specify the input file as argument 1 and the output filename as argument 2.
e.g. csv_converter input.csv outpurt.csv
This project was set up in Visual Code Studio.
It contains a devcontainer set up to start coding within minutes.
There are also tasks defined to build, run and build for release
If you don't feel like using VS Code, you can of course compile and run the code in the standard way.
- Follow the official guide to install Rust
- Open a terminal
- Build or run the code
- Build:
cargo build
- Run:
cargo run
- Build optimized version for release:
cargo build --release
- Build: