RoboHash

Rust implementation of RoboHash by e1ven

Install

bash robohash = "0.1.3"

Example Implementation

```rust use std::fmt::Error; use robohash::colour::Colour; use robohash::RoboHash; use robohash::set_type::Set;

fn main() -> Result<(), Error> { let text = "somethingtoturnintoarobot"; let robo = RoboHash::new(text, Set::Default, Colour::Any)?; let robohash = robo.assemblebase64()?; println!("{robohash:#?}"); Ok(()) } ```

Change Sets Directory

Note the added mut to let mut robo. rust let mut robo = RoboHash::new(text, Set::Default, Colour::Any)?; robo.set_location("./custom_set_location");

Implemented

Todo