From 3cbe7eb4ed7181d8d8b6f23f1d5f0986159e2c86 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 10 Oct 2025 14:42:57 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(cli):=20add=20chrono=20crate?= =?UTF-8?q?=20as=20a=20dependency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add chrono crate for date and time handling --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 4593582..0b82cde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,7 @@ include = [ ] [dependencies] +chrono = "0.4.42" clap = { version = "4.5.48", features = ["derive"] } clap-verbosity-flag = { version = "3.0.4", features = ["tracing"] } env_logger = "0.11.8"