6 releases

0.2.1 Apr 28, 2021
0.2.0 Apr 28, 2021
0.1.0 Apr 27, 2021
0.0.3 Mar 15, 2021
0.0.1 Feb 27, 2021

#1299 in Text processing

Download history 6/week @ 2024-01-08 10/week @ 2024-01-29 15/week @ 2024-02-05 6/week @ 2024-02-12 19/week @ 2024-02-19 29/week @ 2024-02-26 18/week @ 2024-03-04 30/week @ 2024-03-11 13/week @ 2024-03-18 6/week @ 2024-03-25 35/week @ 2024-04-01 9/week @ 2024-04-08 26/week @ 2024-04-15

77 downloads per month
Used in 2 crates

Custom license

11KB
223 lines

EZEmoji

crates.io lastupdated GitHub repo size issuse Lines of Code License Discord Chat

This Project is to make finding Emoji's and Char Groups a bit easier. (WIP)

EZEmojis is a Work in progress made for use in rusty-rain which is a CMatrix clone

Rusty Rain

Warning

The api may change a lot in the coming updates.

Example

use ezemoji::{EZEmoji, Crab};
fn main() {
    println!("{:?}", Crab.as_vec_char());
}

The trait EZEmoji is provided to glue all the types together. You can implement it for your own type like

use ezemoji::EZEmoji;

struct MyEmojiGroup;
impl EZEmoji for MyEmojiGroup {
    fn as_vec_u32(&self) -> Vec<u32> {
        vec![96]
    }
}

HELP

If you have any ideas for this crate make an issue and lets talk about it.

No runtime deps