/src/libunicode/lib.rs

https://gitlab.com/pranith/rust · Rust · 54 lines · 26 code · 6 blank · 22 comment · 0 complexity · f05f5557b537b66c3c714de567a76c76 MD5 · raw file

  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.
  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. //! # The Unicode Library
  11. //!
  12. //! Unicode-intensive functions for `char` and `str` types.
  13. //!
  14. //! This crate provides a collection of Unicode-related functionality,
  15. //! including decompositions, conversions, etc., and provides traits
  16. //! implementing these functions for the `char` and `str` types.
  17. //!
  18. //! The functionality included here is only that which is necessary to
  19. //! provide for basic string-related manipulations. This crate does not
  20. //! (yet) aim to provide a full set of Unicode tables.
  21. // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
  22. #![cfg_attr(stage0, feature(custom_attribute))]
  23. #![crate_name = "unicode"]
  24. #![unstable(feature = "unicode")]
  25. #![feature(lang_items)]
  26. #![feature(staged_api)]
  27. #![staged_api]
  28. #![crate_type = "rlib"]
  29. #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
  30. html_favicon_url = "http://www.rust-lang.org/favicon.ico",
  31. html_root_url = "http://doc.rust-lang.org/nightly/",
  32. html_playground_url = "http://play.rust-lang.org/")]
  33. #![feature(no_std)]
  34. #![no_std]
  35. #![feature(core)]
  36. #![doc(test(no_crate_inject))]
  37. extern crate core;
  38. // regex module
  39. pub use tables::regex;
  40. mod normalize;
  41. mod tables;
  42. mod u_str;
  43. pub mod char;
  44. pub mod str {
  45. pub use u_str::{UnicodeStr, Words, Graphemes, GraphemeIndices};
  46. pub use u_str::{utf8_char_width, is_utf16, Utf16Items, Utf16Item};
  47. pub use u_str::{utf16_items, Utf16Encoder};
  48. }