csv_stacker 0.1.3

A simple utility to vertically stack CSV files with partially matching column headers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use csv_stacker::{run, Config};
use std::process;

fn main() {
    let config = Config::build().unwrap_or_else(|err| {
        eprintln!("Couldn't configure the csv stacker: {err}");
        process::exit(1);
    });

    run(config).unwrap_or_else(|err| {
        eprintln!("Application error: {err}");
        process::exit(1);
    });
}