From 71d6a02ca19857a06bc789f09c885e5cd77f7212 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 18 Feb 2022 12:49:59 +0300 Subject: refactor(journaldriver): Use time crate directly instead of chrono With this change, we still depend on chrono (through medallion), but but I'm going to try and fix that upstream as well. Change-Id: Iefd3d8578ea8870961107f3222dea7f936c2dd9a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5311 Tested-by: BuildkiteCI Autosubmit: tazjin Reviewed-by: sterni --- ops/journaldriver/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ops/journaldriver/Cargo.toml') diff --git a/ops/journaldriver/Cargo.toml b/ops/journaldriver/Cargo.toml index 8cd211772684..51efc62bd37f 100644 --- a/ops/journaldriver/Cargo.toml +++ b/ops/journaldriver/Cargo.toml @@ -7,7 +7,6 @@ edition = "2021" [dependencies] anyhow = "1.0" -chrono = { version = "0.4", features = [ "serde" ]} env_logger = "0.5" lazy_static = "1.0" log = "0.4" @@ -16,6 +15,7 @@ serde = "1.0" serde_derive = "1.0" serde_json = "1.0" systemd = "0.3" +time = { version = "0.3", features = [ "serde-well-known", "macros" ]} ureq = { version = "0.6.2", features = [ "json" ]} [build-dependencies] -- cgit 1.4.1