We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e62bfd commit c855a2fCopy full SHA for c855a2f
library/core/src/unicode/mod.rs
@@ -1,5 +1,6 @@
1
+//! Unicode internals used in liballoc and libstd. Not public API.
2
#![unstable(feature = "unicode_internals", issue = "none")]
-#![allow(missing_docs)]
3
+#![doc(hidden)]
4
5
// for use in alloc, not re-exported in std.
6
#[rustfmt::skip]
@@ -31,5 +32,4 @@ mod unicode_data;
31
32
///
33
/// The version numbering scheme is explained in
34
/// [Unicode 11.0 or later, Section 3.1 Versions of the Unicode Standard](https://www.unicode.org/versions/Unicode11.0.0/ch03.pdf#page=4).
-#[stable(feature = "unicode_version", since = "1.45.0")]
35
pub const UNICODE_VERSION: (u8, u8, u8) = unicode_data::UNICODE_VERSION;
0 commit comments