unic_utils/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
12#![forbid(missing_docs)]
13#![deny(unsafe_code)]
14
15//! # UNIC — Utilities
16//!
17//! A component of [`unic`: Unicode and Internationalization Crates for Rust](/unic/).
18
19
20#[macro_use]
21extern crate unic_char_range;
22
23
24/// UNIC component version.
25pub const PKG_VERSION: &'static str = env!("CARGO_PKG_VERSION");
26
27/// UNIC component name.
28pub const PKG_NAME: &'static str = env!("CARGO_PKG_NAME");
29
30/// UNIC component description.
31pub const PKG_DESCRIPTION: &'static str = env!("CARGO_PKG_DESCRIPTION");
32
33
34pub mod tables;
35
36
37pub use tables::CharDataTable;