mythoji 0.1.0

A minimal Rust crate that helps identify and display fantasy appropriate emojis
Documentation
  • Coverage
  • 100%
    171 out of 171 items documented1 out of 9 items with examples
  • Size
  • Source code size: 39.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.02 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • matanlurey/mythoji
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • matanlurey

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?

  • You are building a fantasy game that wants to use minimal graphics.
  • You are tired of Googling for useful emoji.
  • You don't want to use a more general purpose crate.
use mythoji::{Emoji, Gender, Person, Location, SkinTone};

let castle = Location::Castle;
assert_eq!(castle.to_string(), "🏰");

let female_elf = Emoji::Person(Person::Elf, SkinTone::Neutral, Gender::Female);
assert_eq!(female_elf.to_string(), "🧝‍♀️");