unic_char/
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//! # UNIC — Unicode Character Tools
12//!
13//! A component of [`unic`: Unicode and Internationalization Crates for Rust](/unic/).
14
15#![cfg_attr(not(feature = "std"), no_std)]
16#![warn(
17    bad_style,
18    missing_debug_implementations,
19    missing_docs,
20    unconditional_recursion
21)]
22#![forbid(unsafe_code)]
23
24pub use unic_char_basics as basics;
25pub use unic_char_property as property;
26pub use unic_char_range as range;
27
28mod pkg_info;
29pub use crate::pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};