Skip to content

Commit 4f808ba

Browse files
committed
Auto merge of #145916 - matthiaskrgr:rollup-cnvhq2z, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #142215 (Use -Zmir-opt-level=0 in tests for MIR building) - #143341 (Mention that casting to *const () is a way to roundtrip with from_raw_parts) - #145078 (Fix wrong cache line size of riscv64) - #145290 (Improve std::fs::read_dir docs) - #145335 (Move WTF-8 code from std into core and alloc) - #145904 (Move `riscv64-gc-unknown-linux-musl` from Tier 2 with Host tools to Tier 2) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 269d5b5 + 5fdc840 commit 4f808ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1406
-1261
lines changed

library/alloc/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
#![feature(unicode_internals)]
160160
#![feature(unsize)]
161161
#![feature(unwrap_infallible)]
162+
#![feature(wtf8_internals)]
162163
// tidy-alphabetical-end
163164
//
164165
// Language features:
@@ -232,6 +233,8 @@ pub mod sync;
232233
#[cfg(all(not(no_global_oom_handling), not(no_rc), not(no_sync)))]
233234
pub mod task;
234235
pub mod vec;
236+
#[cfg(all(not(no_rc), not(no_sync), not(no_global_oom_handling)))]
237+
pub mod wtf8;
235238

236239
#[doc(hidden)]
237240
#[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]

0 commit comments

Comments
 (0)