[package]
name = "hashcsv"
version = "1.0.1"
authors = ["Eric Kidd <git@randomhacks.net>"]
edition = "2018"
description = "Append an `id` column to each row of a CSV file, containing a UUID v5 hash of the row"
license = "MIT/Apache-2.0"
repository = "https://github.com/faradayio/csv-tools"
homepage = "https://github.com/faradayio/csv-tools/blob/main/hashcsv/README.md"
[dependencies]
anyhow = "1.0.38"
clap = { version = "2.33.3", features = ["wrap_help"] }
csv = "1.1.5"
env_logger = "0.9.0"
log = "0.4.14"
regex = "1.4.3"
serde = "1.0.123"
structopt = "0.3.21"
time = "0.3.9"
uuid = { version = "1.0.0", features = ["v5"] }
[dev-dependencies]
cli_test_dir = "0.1.7"