Initial commit
Showing
This diff is collapsed.
[package] | ||
name = "csv-merge" | ||
description = "A cli tool for merging CSV files" | ||
version = "0.1.0" | ||
authors = ["Richard O'Dwyer <richard@richard.do>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/richardARPANET/csv-merge" | ||
readme = "README.md" | ||
keywords = ["cli", "csv", "merge"] | ||
[dependencies] | ||
csv = "1" | ||
# The development profile, used for `cargo build` | ||
[profile.dev] | ||
opt-level = 0 # Controls the --opt-level the compiler builds with | ||
debug = true # Controls whether the compiler passes `-g` | ||
# The release profile, used for `cargo build --release` | ||
[profile.release] | ||
opt-level = 3 | ||
debug = false | ||
[dev-dependencies] | ||
assert_cli = "0.6.3" |
data.csv
deleted
100644 → 0
src/remove.md
0 → 100644
Please register or sign in to comment