From 0ab6eaf389ce7df7d198725acc19a86d64d15011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sun, 23 Apr 2023 23:02:53 +0300 Subject: [PATCH] Disable default features of `chrono` To avoid bringing `time` v0.1.x into dependency graph, see https://github.com/time-rs/time/issues/293 Fixes #36 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e9bbe10..f9805ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ travis-ci = { repository = "gin66/tui-logger" } [dependencies] log = "0.4" -chrono = "0.4" +chrono = { version = "0.4", default-features = false, features = ["clock"] } tui = { version = "0.19", default-features = false, package = "tui", optional = true } ratatui = { version = "0.20", default-features = false, package = "ratatui", optional = true } tracing = {version = "0.1.37", optional = true}