Skip to content

jtommi/csv_converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wip made with Rust Platform GitHub license

CSV Converter

This tool helps you convert CSV files from one format to another.

It is written in Rust.

Usage

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

Development

VS Code

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.

Manual set up

  1. Follow the official guide to install Rust
  2. Open a terminal
  3. Build or run the code
    • Build: cargo build
    • Run: cargo run
    • Build optimized version for release: cargo build --release