Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardanaya/emoji-rs
https://github.com/richardanaya/emoji-rs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/richardanaya/emoji-rs
- Owner: richardanaya
- License: apache-2.0
- Created: 2020-11-18T14:20:48.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-17T01:49:19.000Z (over 3 years ago)
- Last Synced: 2024-07-14T12:34:35.456Z (4 months ago)
- Language: Rust
- Size: 13.3 MB
- Stars: 9
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
- awesome-starred - richardanaya/emoji-rs - (others)
README
# emoji-rs
## Introduction
3511 emojis and 4580 emoji variants with localization data in 143 languages
This crate contains a huge amount of data about every emoji ever.
Some of the data includes:
- Name
- Glyph
- Unicode Release Version
- Classification
- Variants
- Annotations in many languagesThis crate also provides functions for searching through emojis by
name and glyph, as well as several fuzzy search functions.
## Quickstart
```rust
fn main() {
println!("{}", emoji::food_and_drink::food_marine::CRAB.glyph);
}
```
See more examples [here](https://github.com/Shizcow/emoji-rs/tree/master/examples/).
## Languages
By default, only English annotations are compiled in.
To enable other languages, use the feature corresponding to that languge. An exhaustive
list of supported languages can be found
[here](https://github.com/Shizcow/emoji-rs/blob/master/emoji/Cargo.toml).# License
This project is licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
http://opensource.org/licenses/MIT)at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in `emoji` by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.