mythoji

A minimal Rust crate that helps identify and display fantasy appropriate emojis.

Rust Checks Coverage Status Current Crates.io Version Docs License: MIT

Why mythoji?

```rust use mythoji::{Emoji, Gender, Person, Location, SkinTone};

let castle = Location::Castle; asserteq!(castle.tostring(), "🏰");

let femaleelf = Emoji::Person(Person::Elf, SkinTone::Neutral, Gender::Female); asserteq!(femaleelf.tostring(), "🧝‍♀️"); ```