trotter 0.2.1

Trotter 🎠 is an experimental crate that aims to make writing Gemini clients fun and easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../readme.md")]

mod actor;
pub mod error;
mod response;
mod status;
mod user_agent;
mod utils;

pub use actor::{trot, trot_in, Actor};
pub use response::Response;
pub use status::Status;
pub use user_agent::UserAgent;