emojic :grinning: :laughing:

Emoji constants for your rusty strings. This crate is rustlang port of emoji written by @enescakir

License

📦 Cargo.toml

emojic = {git = "https://github.com/orhanbalci/emojic.git"}

🔧 Example

```rust use emojic::constants::*;

fn main() { println!("Hello {}", WAVINGHAND); println!( "I'm {} from {}", MANTECHNOLOGIST, FLAGTURKEY ); println!( "Different skin tones default {} light {} dark {}", THUMBSUP, OKHAND.tone(vec![Tone::LIGHT]), CALLMEHAND.tone(vec![Tone::DARK]) ); println!( "Emojis with multiple skin tones.\nBoth medium: {} light and dark: {}", PEOPLEHOLDINGHANDS.tone(vec![Tone::MEDIUM]), PEOPLEHOLDING_HANDS.tone(vec![Tone::LIGHT, Tone::DARK]) ); }

```

:printer: Output

Hello 👋 I'm 👨‍💻 from 🇹🇷 Different skin tones default 👍 light 👌🏻 dark 🤙🏿 Emojis with multiple skin tones. Both medium: 🧑🏽‍🤝‍🧑🏽 light and dark: 🧑🏻‍🤝‍🧑🏿