From a4d789a74cbd2d347a093d8d13b8b45d6aeb780a Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Thu, 2 Mar 2023 11:54:50 +0100 Subject: [PATCH] Reconfigure chrono to remove CVE-2020-26235 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1ef40f0..947d1d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ tls-rust = ["tokio-rustls", "webpki-roots"] [dependencies] -chrono = "0.4.0" +chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } encoding = "0.2.0" futures-util = { version = "0.3.0", default-features = false, features = ["alloc", "sink"] } irc-proto = { version = "0.15.0", path = "irc-proto" }