From 8364eeae4bc4c4b6ee702a20a469b2c3c906c78f Mon Sep 17 00:00:00 2001 From: Ilya Bizyaev Date: Tue, 9 Jul 2024 23:32:12 +0200 Subject: [PATCH] Require chrono >= 0.4.32 It's required for teloxide's usages of chrono::Duration::try_seconds: https://github.com/chronotope/chrono/commit/a2820c4 --- crates/teloxide-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/teloxide-core/Cargo.toml b/crates/teloxide-core/Cargo.toml index 669abaea..56b5fd54 100644 --- a/crates/teloxide-core/Cargo.toml +++ b/crates/teloxide-core/Cargo.toml @@ -72,7 +72,7 @@ once_cell = "1.5.0" takecell = "0.1" take_mut = "0.2" rc-box = "1.1.1" -chrono = { version = "0.4.30", default-features = false } +chrono = { version = "0.4.32", default-features = false } either = "1.6.1" bitflags = { version = "1.2" }