The tinylog format is a minimal microblog format for the small web (Gemini, Spartan etc). This library implements a set of types useful for working with Tinylogs which can be readily converted to and from strings. This would be useful for automating adding entries or possibly in an aggregator type application.
Parsing a Tinylog
from a String
``Rust
// Assume some type
Twhich implements the
Time` trait
use tinylog::Tinylog;
const TL: &'static str = includestr!("../test/tinylog.gmi");
let log = TL.parse::