diff options
| author | Xe Iaso <me@christine.website> | 2022-03-21 20:14:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-21 20:14:14 -0400 |
| commit | 8b747c1c40876c6668191594eddcb260199cdb7f (patch) | |
| tree | 86edb9bc382751c6a32f5f2946ff235ea06674ba /lib/mi/src | |
| parent | f45ca40ae1052d46611ff2f27ad281695afc4f8f (diff) | |
| download | xesite-8b747c1c40876c6668191594eddcb260199cdb7f.tar.xz xesite-8b747c1c40876c6668191594eddcb260199cdb7f.zip | |
Rewrite the site routing with Axum (#441)
* broken state
Signed-off-by: Xe Iaso <me@christine.website>
* fix???
Signed-off-by: Xe Iaso <me@christine.website>
* Port everything else to axum
Signed-off-by: Xe <me@christine.website>
* headers
Signed-off-by: Xe Iaso <me@christine.website>
* site update post
Signed-off-by: Christine Dodrill <me@christine.website>
* fix headers
Signed-off-by: Xe Iaso <me@christine.website>
* remove warp example
Signed-off-by: Xe Iaso <me@christine.website>
* 80c wrap
Signed-off-by: Xe Iaso <me@christine.website>
* bump version
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'lib/mi/src')
| -rw-r--r-- | lib/mi/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mi/src/lib.rs b/lib/mi/src/lib.rs index 0e19bec..4263970 100644 --- a/lib/mi/src/lib.rs +++ b/lib/mi/src/lib.rs @@ -1,6 +1,6 @@ use color_eyre::eyre::Result; use reqwest::header; -use serde::Deserialize; +use serde::{Deserialize, Serialize}; use tracing::instrument; const USER_AGENT_BASE: &str = concat!( @@ -58,7 +58,7 @@ impl Client { } } -#[derive(Debug, Deserialize, Eq, PartialEq, Clone)] +#[derive(Debug, Deserialize, Eq, PartialEq, Clone, Serialize)] pub struct WebMention { pub source: String, pub title: Option<String>, |
