Fix incompatible serde versions, misspelled reference (#9)

This commit is contained in:
Bryan Tsang
2017-07-03 12:42:38 +01:00
committed by Aaron Power
parent f14363956f
commit 974f9241e1
4 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ pub struct Notification {
pub id: u64,
#[serde(rename = "type")]
pub notification_type: NotificationType,
pub created_at: DateTime<UTC>,
pub created_at: DateTime<Utc>,
pub account: Account,
pub status: Option<Status>,
}