diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/commit/models.rs | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -22,7 +22,7 @@ slog-async = "2.4.0" dotenv = "0.15.0" config = "0.10.1" serde = { version = "1.0.104", features = ["derive"] } -chrono = { version = "0.4.19", features = ["serde"] } +chrono = { version = "0.4", features = ["serde"] } uuid = { version = "0.8.2", features = ["serde", "v4"] } regex = "1" md-5 = "0.9.1" diff --git a/src/commit/models.rs b/src/commit/models.rs index 068c550..6246511 100644 --- a/src/commit/models.rs +++ b/src/commit/models.rs @@ -1,7 +1,7 @@ use crate::db::get_client; use crate::errors::AppError; -use chrono::NaiveDateTime; +use chrono::{DateTime, Local}; use deadpool_postgres::Pool; use serde::{Deserialize, Serialize}; use tokio_pg_mapper::FromTokioPostgresRow; @@ -14,7 +14,7 @@ pub struct Commit { pub hash: String, pub tree: Option<String>, pub text: String, - pub date: NaiveDateTime, + pub date: DateTime<Local>, pub author_email: String, // Reference to Email pub author_name: String, pub committer_email: String, // Reference to Email |