From 0bfbe8c372f80dabe064039843810cd8c818642a Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Sat, 4 May 2024 20:16:20 +0200 Subject: [PATCH] Specify the required minimum `chrono` version (#12766) See #12765 and h/t to @FMOtalleb in https://discord.com/channels/601130461678272522/855947301380947968/1236286905843454032 `Duration/TimeDelta::try_milliseconds` was added in `0.4.34` https://github.com/chronotope/chrono/releases/tag/v0.4.34 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9cf4fcf947..ce259b06e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ byteorder = "1.5" bytesize = "1.3" calamine = "0.24.0" chardetng = "0.1.17" -chrono = { default-features = false, version = "0.4" } +chrono = { default-features = false, version = "0.4.34" } chrono-humanize = "0.2.3" chrono-tz = "0.8" crossbeam-channel = "0.5.8"