sitemaps

Crates.iositemaps
lib.rssitemaps
version0.2.0
sourcesrc
created_at2024-03-16 01:01:57.135794
updated_at2024-06-23 01:20:37.271242
descriptionRead and write files in the Sitemaps XML format
homepagehttps://github.com/blackerby/sitemaps-rs
repositoryhttps://github.com/blackerby/sitemaps-rs
max_upload_size
id1175335
size40,191
William Blackerby (blackerby)

documentation

README

sitemaps

Read and write files in the Sitemaps XML format

use std::fs::File;
use std::io::BufReader;
use sitemaps::SitemapsFile;

let file = File::open("tests/data/example_1_url.xml").unwrap();
let reader = BufReader::new(file);
let sitemap = SitemapsFile::read(reader).unwrap();
Commit count: 57

cargo fmt