From 22ecaaa0fe30d5f1dc493bb78f25231b24de8a88 Mon Sep 17 00:00:00 2001 From: Ralf Zerres Date: Sat, 27 Jun 2020 22:27:00 +0200 Subject: [PATCH] frontend: Cargo.toml: include csv for example csv-test Signed-off-by: Ralf Zerres --- frontend/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index 986cfd6..b554965 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -13,8 +13,9 @@ winapi = { version = "0.3", features = ["winuser"] } [dependencies] async-stream = "~0.2" -csv = { version = "~1.1" } +chrono = { version = "~0.4.0", features = ["serde"] } clap = { version = "~2.33", features = ["suggestions", "color"] } +csv = { version = "~1.1" } dotenv = "~0.15.0" #env_logger = "~0.7.1" envy = { version = "~0.4" } @@ -25,7 +26,6 @@ locales = { version = "0.1" } orbtk = { path = "../../redox-os/orbtk" } serde = { version = "~1.0", features = ["derive"] } #serde_json = "~1.0" -chrono = { version = "~0.4.0", features = ["serde"] } #tokio = { version = "~0.2", features = ["macros", "rt-threaded", "stream", "time"] } tracing = { version = "~0.1" } tracing-subscriber = { version = "0.2.0-alpha", features = ["tracing-log"] }