aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2022-07-04 14:44:00 +0000
committerXe Iaso <me@christine.website>2022-07-04 14:44:00 +0000
commit6be8b24dd293e3d48eafc37cecf1d98971be81f8 (patch)
treee7b405b0bcb4d6155b95996002a379f829106c41 /src/app
parent03fa2e33a1fb935776bf385382ddfa1ef2a5020c (diff)
downloadxesite-6be8b24dd293e3d48eafc37cecf1d98971be81f8.tar.xz
xesite-6be8b24dd293e3d48eafc37cecf1d98971be81f8.zip
rename jsonfeed to xe_jsonfeed to prepare for my own extensions
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/mod.rs b/src/app/mod.rs
index e938f36..5b8e719 100644
--- a/src/app/mod.rs
+++ b/src/app/mod.rs
@@ -54,7 +54,7 @@ pub struct State {
pub gallery: Vec<Post>,
pub talks: Vec<Post>,
pub everything: Vec<Post>,
- pub jf: jsonfeed::Feed,
+ pub jf: xe_jsonfeed::Feed,
pub sitemap: Vec<u8>,
pub patrons: Option<patreon::Users>,
pub mi: mi::Client,
@@ -93,11 +93,11 @@ pub async fn init(cfg: PathBuf) -> Result<State> {
.take(5)
.collect();
- let mut jfb = jsonfeed::Feed::builder()
+ let mut jfb = xe_jsonfeed::Feed::builder()
.title("Xe's Blog")
.description("My blog posts and rants about various technology things.")
.author(
- jsonfeed::Author::new()
+ xe_jsonfeed::Author::new()
.name("Xe")
.url("https://xeiaso.net")
.avatar(ICON),