1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
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.
11 //! # The Unicode Library
13 //! Unicode-intensive functions for `char` and `str` types.
15 //! This crate provides a collection of Unicode-related functionality,
16 //! including decompositions, conversions, etc., and provides traits
17 //! implementing these functions for the `char` and `str` types.
19 //! The functionality included here is only that which is necessary to
20 //! provide for basic string-related manipulations. This crate does not
21 //! (yet) aim to provide a full set of Unicode tables.
23 #![crate_name = "rustc_unicode"]
24 #![unstable(feature = "unicode", issue = "27783")]
25 #![crate_type = "rlib"]
26 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
27 html_favicon_url
= "https://doc.rust-lang.org/favicon.ico",
28 html_root_url
= "https://doc.rust-lang.org/nightly/",
29 html_playground_url
= "https://play.rust-lang.org/",
30 issue_tracker_base_url
= "https://github.com/rust-lang/rust/issues/",
31 test(no_crate_inject
, attr(allow(unused_variables
), deny(warnings
))))]
32 #![cfg_attr(not(stage0), deny(warnings))]
35 #![feature(core_char_ext)]
36 #![feature(lang_items)]
37 #![feature(staged_api)]
46 pub use u_str
::{UnicodeStr, SplitWhitespace}
;
47 pub use u_str
::{utf8_char_width, is_utf16}
;
48 pub use u_str
::{Utf16Encoder}
;
51 // For use in libcollections, not re-exported in libstd.
52 pub mod derived_property
{
53 pub use tables
::derived_property
::{Cased, Case_Ignorable}
;
56 // For use in libsyntax
58 pub use tables
::property
::Pattern_White_Space
;