From d2b0ce17a4764e1af5ebed515d85b5a84f5cff18 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Mon, 29 Dec 2025 13:38:09 -0700 Subject: [PATCH] fix: Fix the dependency on time (#2306) ratatui-widgets uses time's Month::length(), which requires time-0.3.37 or later. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 75addd73..04c5dead 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,7 +64,7 @@ strum = { version = "0.27", default-features = false, features = ["derive"] } termion = "4" termwiz = "0.23" thiserror = { version = "2", default-features = false } -time = { version = "0.3", default-features = false } +time = { version = "0.3.37", default-features = false } tokio = "1" tokio-stream = "0.1" tracing = "0.1"