From 376ce0948d478a95078f973879593587eaa54975 Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Mon, 8 Aug 2022 23:41:48 -0700 Subject: [PATCH] Fix security advisory in chrono (#557) Fixes https://rustsec.org/advisories/RUSTSEC-2020-0159 "Potential segfault in localtime_r invocations" Will unblock CI (which doesn't seem blocked yet). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c937ee3c10..f6a380a3c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ base64 = "0.13.0" base64-serde = "0.6.1" bytes = { version = "1.1.0", features = ["serde"] } cached = "0.34.0" -chrono = "0.4.19" +chrono = "0.4.20" clap = { version = "3.1.2", features = ["cargo", "derive", "env"] } dashmap = "4.0.2" either = "1.6.1"