Add time feature to Diesel

This commit is contained in:
Ethan Girouard 2024-02-08 17:31:42 -05:00
parent 9f1fece816
commit a6f141e841
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@ -747,6 +747,7 @@ dependencies = [
"itoa",
"pq-sys",
"r2d2",
"time",
]
[[package]]

View File

@ -25,7 +25,7 @@ leptos_icons = { version = "0.1.0", default_features = false, features = [
"BsSkipEndFill"
] }
dotenv = { version = "0.15.0", optional = true }
diesel = { version = "2.1.4", features = ["postgres", "r2d2"], optional = true }
diesel = { version = "2.1.4", features = ["postgres", "r2d2", "time"], optional = true }
lazy_static = { version = "1.4.0", optional = true }
serde = { versions = "1.0.195", features = ["derive"] }
openssl = { version = "0.10.63", optional = true }