nors 0.1.0

nors is a Rust program for counting the number of rows and records in a CSV file.
Documentation
FROM rust:1.47-slim-buster

RUN apt-get update -y \
    && apt-get install -y libssl-dev pkg-config

RUN cargo install cargo-watch cargo-make

WORKDIR /app
ADD . .

RUN cargo build --bin nors