From 399865f5f7af03f2757f60d5000b3ae98a2f1acd Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 2 Nov 2025 16:08:48 -0800 Subject: [PATCH] snooze: add UI elements and DB for snooze functionality --- server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index e5f1807..41de25f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -45,7 +45,7 @@ reqwest = { version = "0.12.15", features = ["blocking"] } scraper = "0.24.0" serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" -sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio", "time"] } +sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio", "time", "chrono"] } tantivy = { version = "0.25.0", optional = true } thiserror = "2.0.12" tokio = "1.44.2"