From ff37e47c25ca9d2b69253b4cf12899d0cead8a94 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Mon, 18 Oct 2021 15:45:39 +0200 Subject: [PATCH] Disable default features of chrono https://rustsec.org/advisories/RUSTSEC-2020-0071.html --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cc1d2c5..4464e63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ default = [] slog = { version = "2.1.1" } serde_json = "1" serde = "1" -chrono = "0.4" +chrono = { version = "0.4", default-features = false, features = ["clock"] } erased-serde = {version = "0.3", optional = true } [dev-dependencies]