about summary refs log tree commit diff
path: root/src/librustdoc/lib.rs
diff options
context:
space:
mode:
authorTrevor Gross <t.gross35@gmail.com>2025-08-29 19:33:03 -0500
committerGitHub <noreply@github.com>2025-08-29 19:33:03 -0500
commit751a9ad2e2470cb877307d9fa5c6e43bbc428cf5 (patch)
tree58feed63b2d9ca470079d3257689535555b45677 /src/librustdoc/lib.rs
parented9e767c01ad257e4e86e40415aacf4019b64f7d (diff)
parente42c1b12961385d6a5e9e442344fcaef8678ab58 (diff)
downloadrust-751a9ad2e2470cb877307d9fa5c6e43bbc428cf5.tar.gz
rust-751a9ad2e2470cb877307d9fa5c6e43bbc428cf5.zip
Rollup merge of #145756 - okaneco:stabilize_char_boundary, r=scottmcm
str: Stabilize `round_char_boundary` feature

Closes https://github.com/rust-lang/rust/issues/93743
FCP completed https://github.com/rust-lang/rust/issues/93743#issuecomment-3168382171
Diffstat (limited to 'src/librustdoc/lib.rs')
-rw-r--r--src/librustdoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs
index e2682045ab4..cd29b096ccf 100644
--- a/src/librustdoc/lib.rs
+++ b/src/librustdoc/lib.rs
@@ -1,4 +1,5 @@
 // tidy-alphabetical-start
+#![cfg_attr(bootstrap, feature(round_char_boundary))]
 #![doc(
     html_root_url = "https://doc.rust-lang.org/nightly/",
     html_playground_url = "https://play.rust-lang.org/"
@@ -13,7 +14,6 @@
 #![feature(if_let_guard)]
 #![feature(iter_advance_by)]
 #![feature(iter_intersperse)]
-#![feature(round_char_boundary)]
 #![feature(rustc_private)]
 #![feature(test)]
 #![warn(rustc::internal)]