unic_emoji/lib.rs
1// Copyright 2017 The UNIC Project Developers.
2//
3// See the COPYRIGHT file at the top-level directory of this distribution.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11#![warn(
12 bad_style,
13 missing_debug_implementations,
14 missing_docs,
15 unconditional_recursion
16)]
17#![forbid(unsafe_code)]
18
19//! # UNIC — Unicode Emoji
20//!
21//! A component of [`unic`: Unicode and Internationalization Crates for Rust](/unic/).
22//!
23//! This UNIC component implements character properties and algorithms from [Unicode® Technical
24//! Standard #51 - Unicode Emoji](http://unicode.org/reports/tr51/).
25
26pub use unic_emoji_char as char;
27
28mod pkg_info;
29pub use crate::pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
30
31pub use crate::char::EMOJI_VERSION;