A rust library to generate sitemaps.
Go to file
2021-04-20 16:47:43 +02:00
.github speed up gh actions 2020-11-27 14:29:53 +01:00
examples upd 0.4 2021-04-20 16:47:43 +02:00
src upd 0.4 2021-04-20 16:47:43 +02:00
.gitignore initial commit 2020-11-22 15:43:41 +01:00
Cargo.toml upd 0.4 2021-04-20 16:47:43 +02:00
LICENSE add more author info to the license 2021-02-01 10:49:54 +01:00
README.md upd 0.4 2021-04-20 16:47:43 +02:00

Sitewriter

Rust crates.io License codecov

A rust library to generate sitemaps.

It uses the quick-xml so it should be fast.

Example

To run the examples use cargo run --example gen_sitemap

 use chrono::prelude::*;
 use sitewriter::*;

let urls = vec![
    UrlEntryBuilder::default()
        .loc("https://edgarluque.com/projects".parse().unwrap())
        .build()
        .unwrap(),
    UrlEntry {
        loc: "https://edgarluque.com/".parse().unwrap(),
        changefreq: Some(ChangeFreq::Daily),
        priority: Some(1.0),
        lastmod: Some(Utc::now()),
    },
    UrlEntry {
        loc: "https://edgarluque.com/blog".parse().unwrap(),
        changefreq: Some(ChangeFreq::Weekly),
        priority: Some(0.8),
        lastmod: Some(Utc::now()),
    },
    UrlEntry {
        loc: "https://edgarluque.com/blog/sitewriter".parse().unwrap(),
        changefreq: Some(ChangeFreq::Never),
        priority: Some(0.5),
        lastmod: Some(Utc.ymd(2020, 11, 22).and_hms(15, 10, 15)),
    },
    UrlEntry {
        loc: "https://edgarluque.com/blog/some-future-post"
            .parse()
            .unwrap(),
        changefreq: Some(ChangeFreq::Never),
        priority: Some(0.5),
        lastmod: Some(
            Utc.from_utc_datetime(&Local.ymd(2020, 12, 5).and_hms(12, 30, 0).naive_utc()),
        ),
    },
    // Entity escaping
    UrlEntry {
        loc: "https://edgarluque.com/blog/test&id='<test>'"
            .parse()
            .unwrap(),
        changefreq: Some(ChangeFreq::Never),
        priority: Some(0.5),
        lastmod: Some(
            Utc.from_utc_datetime(&Local.ymd(2020, 12, 5).and_hms(12, 30, 0).naive_utc()),
        ),
    },
];

let result = Sitemap::into_str(&urls).unwrap();
println!("{}", result);