A minimal Rust crate that helps identify and display fantasy appropriate emojis.
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(), "🧝♀️"); ```