Added serde rename for notificiation, and updated repo link

master
Aaron Power 7 years ago
parent 69cec5bf7e
commit 5a06265e87
  1. 4
      Cargo.toml
  2. 4
      src/entities/notification.rs

@ -1,11 +1,11 @@
[package]
name = "mammut"
version = "0.4.0"
version = "0.4.1"
description = "A wrapper around the Mastodon API."
authors = ["Aaron Power <theaaronepower@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/Aaronepower/mastodon.rs.git"
repository = "https://github.com/Aaronepower/mammut.git"
keywords = ["api", "web", "social", "mastodon", "wrapper"]
categories = ["web-programming", "http-client"]

@ -13,8 +13,12 @@ pub struct Notification {
#[derive(Debug, Clone, Deserialize)]
pub enum NotificationType {
#[serde(rename = "mention")]
Mention,
#[serde(rename = "reblog")]
Reblog,
#[serde(rename = "favourite")]
Favourite,
#[serde(rename = "follow")]
Follow,
}

Loading…
Cancel
Save