From f3ffffc682604349b96dbe4ad33daa5dd1a09f63 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Wed, 29 May 2024 22:58:06 -0700 Subject: [PATCH] fix(cron): enable chrono `now` feature (#24047) --- ext/cron/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/cron/Cargo.toml b/ext/cron/Cargo.toml index 000540bf9b..a52ba98883 100644 --- a/ext/cron/Cargo.toml +++ b/ext/cron/Cargo.toml @@ -16,7 +16,7 @@ path = "lib.rs" [dependencies] anyhow.workspace = true async-trait.workspace = true -chrono.workspace = true +chrono = { workspace = true, features = ["now"] } deno_core.workspace = true saffron.workspace = true tokio.workspace = true