cargo fmt
Rust Build / Check (pull_request) Successful in 35s
Release Tagging / release (pull_request) Successful in 38s
Rust Build / Rustfmt (pull_request) Successful in 30s
Rust Build / Test Suite (pull_request) Successful in 37s
Rust Build / Clippy (pull_request) Successful in 30s
Rust Build / build (pull_request) Successful in 33s

This commit is contained in:
2026-05-29 09:55:50 -04:00
parent 85d326fa6d
commit 7e5758d0c9
+4 -4
View File
@@ -20,10 +20,10 @@ pub struct User {
pub struct ServiceUser { pub struct ServiceUser {
pub id: uuid::Uuid, pub id: uuid::Uuid,
// TODO: Remove the omitempty tags at a later point // TODO: Remove the omitempty tags at a later point
pub username: String, pub username: String,
pub passphrase: String, pub passphrase: String,
pub created: Option<time::OffsetDateTime>, pub created: Option<time::OffsetDateTime>,
// When serializing to json, if empty do not populate // When serializing to json, if empty do not populate
#[serde(with = "time::serde::rfc3339::option")] #[serde(with = "time::serde::rfc3339::option")]
pub last_login: Option<time::OffsetDateTime>, pub last_login: Option<time::OffsetDateTime>,
} }