Add chrono

Enable chrono feature for diesel
This commit is contained in:
2026-06-26 17:46:50 -04:00
parent 3fae599c6f
commit fb3afaf31c
2 changed files with 5 additions and 1 deletions

View File

@@ -9,8 +9,9 @@ edition = "2024"
build = "src/build.rs"
[dependencies]
chrono = { version = "0.4.45", features = ["serde"] }
config = { version = "0.15.24", optional = true }
diesel = { version = "2.3.10", optional = true }
diesel = { version = "2.3.10", optional = true, features = ["chrono"] }
diesel-async = { version = "0.9.1", optional = true, features = ["postgres", "deadpool", "migrations"] }
diesel_migrations = { version = "2.3.2", optional = true }
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }