From 7c898d5b97884b4478eb9eec2cf2f0bdc49cfd90 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 27 Dec 2020 22:26:28 -0500 Subject: [PATCH] removed data_time_parser dependency; added transpose in README --- Cargo.toml | 1 - README.md | 2 ++ src/main.rs | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 504381668..780eacb95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,6 @@ serde_derive = "1" streaming-stats = "0.2.3" tabwriter = "1" threadpool = "1.3" -date_time_parser = "0.1.0" [dev-dependencies] quickcheck = { version = "0.7", default-features = false } diff --git a/README.md b/README.md index 2ef46d78b..714fa5df7 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,8 @@ since the 0.13.0 release that I found useful. It also implements percentage samp (i.e., mean, standard deviation, median, range, etc.) * **table** - Show aligned output of any CSV data using [elastic tabstops](https://github.com/BurntSushi/tabwriter). +* **transpose** - Transpose rows/columns of CSV data. + ### A whirlwind tour diff --git a/src/main.rs b/src/main.rs index adadc6656..3cf4c2f31 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,6 @@ extern crate serde_derive; extern crate stats; extern crate tabwriter; extern crate threadpool; -extern crate date_time_parser; use std::borrow::ToOwned; use std::env;