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 //! Package information
12 
13 /// UNIC component version.
14 pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
15 
16 /// UNIC component name.
17 pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
18 
19 /// UNIC component description.
20 pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
21