upd readme

This commit is contained in:
Edgar 2021-02-01 13:06:17 +01:00
parent 40713ae38b
commit f0d7fe3488
No known key found for this signature in database
GPG key ID: 8731E6C0166EAA85
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "sitewriter" name = "sitewriter"
version = "0.3.0" version = "0.3.1"
authors = ["Edgar <git@edgarluque.com>"] authors = ["Edgar <git@edgarluque.com>"]
edition = "2018" edition = "2018"
description = "A sitemap writing library." description = "A sitemap writing library."

View file

@ -18,31 +18,31 @@ use sitewriter::*;
fn main() { fn main() {
let mut sitemap = Sitemap::new(); let mut sitemap = Sitemap::new();
sitemap.urls.push(Url::new("https://edgarluque.com/projects".to_owned())); sitemap.urls.push(Url::new("https://edgarluque.com/projects"));
sitemap.urls.push(Url { sitemap.urls.push(Url {
loc: "https://edgarluque.com/".to_owned(), loc: "https://edgarluque.com/",
changefreq: Some(ChangeFreq::Daily), changefreq: Some(ChangeFreq::Daily),
priority: Some(1.0), priority: Some(1.0),
lastmod: Some(Utc::now()), lastmod: Some(Utc::now()),
}); });
sitemap.urls.push(Url { sitemap.urls.push(Url {
loc: "https://edgarluque.com/blog".to_owned(), loc: "https://edgarluque.com/blog",
changefreq: Some(ChangeFreq::Weekly), changefreq: Some(ChangeFreq::Weekly),
priority: Some(0.8), priority: Some(0.8),
lastmod: Some(Utc::now()), lastmod: Some(Utc::now()),
}); });
sitemap.urls.push(Url { sitemap.urls.push(Url {
loc: "https://edgarluque.com/blog/sitewriter".to_owned(), loc: "https://edgarluque.com/blog/sitewriter",
changefreq: Some(ChangeFreq::Never), changefreq: Some(ChangeFreq::Never),
priority: Some(0.5), priority: Some(0.5),
lastmod: Some(Utc.ymd(2020, 11, 22).and_hms(15, 10, 15)), lastmod: Some(Utc.ymd(2020, 11, 22).and_hms(15, 10, 15)),
}); });
sitemap.urls.push(Url { sitemap.urls.push(Url {
loc: "https://edgarluque.com/blog/some-future-post".to_owned(), loc: "https://edgarluque.com/blog/some-future-post",
changefreq: Some(ChangeFreq::Never), changefreq: Some(ChangeFreq::Never),
priority: Some(0.5), priority: Some(0.5),
lastmod: Some(Utc.from_utc_datetime(&Local.ymd(2020, 12, 5).and_hms(12, 30, 0).naive_utc())), lastmod: Some(Utc.from_utc_datetime(&Local.ymd(2020, 12, 5).and_hms(12, 30, 0).naive_utc())),