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 #![no_std]
12 #![warn(
13     bad_style,
14     missing_debug_implementations,
15     missing_docs,
16     unconditional_recursion
17 )]
18 #![forbid(unsafe_code)]
19 #![cfg_attr(feature = "unstable", feature(unicode_version))]
20 
21 //! # UNIC — Common Utilities
22 //!
23 //! A component of [`unic`: Unicode and Internationalization Crates for Rust](/unic/).
24 //!
25 //!  This UNIC component provides common types, algorithms and macros not shared between many
26 //!  components.
27 
28 mod pkg_info;
29 pub use crate::pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
30 
31 pub mod version;
32