From 7949e7e1f9c491d409c553b095e223faba36fd2e Mon Sep 17 00:00:00 2001 From: dusk Date: Sat, 4 Jan 2025 00:39:21 +0900 Subject: [PATCH] fix: enable chrono on sqlx, libpk uses it --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 33eee2b6..f397843f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ sentry = { version = "0.34.0", default-features = false, features = ["backtrace serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.117" signal-hook = "0.3.17" -sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "time", "macros", "uuid"] } +sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "time", "chrono", "macros", "uuid"] } tokio = { version = "1.36.0", features = ["full"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] }