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 
20 //! # UNIC — UCD — Core
21 //!
22 //! A component of [`unic`: Unicode and Internationalization Crates for Rust](/unic/).
23 //!
24 //! Core create indicating the version of Unicode Character Database.
25 
26 pub use unic_common::version::UnicodeVersion;
27 
28 mod pkg_info;
29 pub use crate::pkg_info::{PKG_DESCRIPTION, PKG_NAME, PKG_VERSION};
30 
31 mod unicode_version;
32 pub use crate::unicode_version::UNICODE_VERSION;
33