Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8808d5a
std(docs): clarify how std::fs::set_permisions works with symlinks
lolbinarycat Apr 8, 2025
37c4a37
clarify std::fs::set_permissions symlink behavior
lolbinarycat Apr 8, 2025
11f7290
refactor(test): Decouple parsing from help generation
epage Jan 27, 2025
aa8670f
fix(test): Expose '--no-capture', deprecating '--nocapture'
epage Jan 27, 2025
3d29e84
Fix `download-ci-gcc key` in `bootstrap.example.toml`
Kobzol Apr 23, 2025
d4011ae
Download GCC from CI on test builders
Kobzol Apr 23, 2025
59b6cf5
uefi: Update r-efi
Ayush1325 Mar 20, 2025
6f5698c
Avoid re-interning in `LateContext::get_def_path`
DaniPopes Apr 26, 2025
9fed91f
docs: fix incorrect stability markers on `std::{todo, matches}`
notriddle Apr 26, 2025
d40d424
CI: docker: host-x86_64: test-various: uefi_qemu_test: Update r-efi
Ayush1325 Apr 27, 2025
0795b2d
specify explicit safety guidance for from_utf8_unchecked
DiuDiu777 Apr 27, 2025
2ab4034
Add `Arc::is_unique`
SabrinaJewson Mar 25, 2025
009a84f
Rollup merge of #138395 - Kobzol:ci-download-gcc, r=Mark-Simulacrum
ChrisDenton Apr 28, 2025
52b846d
Rollup merge of #138737 - Ayush1325:r-efi-update, r=tgross35
ChrisDenton Apr 28, 2025
55f9326
Rollup merge of #138939 - SabrinaJewson:arc-is-unique, r=tgross35
ChrisDenton Apr 28, 2025
8ee9029
Rollup merge of #139224 - epage:nocapture, r=thomcc
ChrisDenton Apr 28, 2025
c439543
Rollup merge of #139546 - lolbinarycat:std-set_permissions-75942, r=t…
ChrisDenton Apr 28, 2025
5633102
Rollup merge of #140345 - DaniPopes:get-def-path, r=Urgau
ChrisDenton Apr 28, 2025
bd36f25
Rollup merge of #140351 - rust-lang:notriddle/stability-use, r=thomcc
ChrisDenton Apr 28, 2025
0ae362b
Rollup merge of #140359 - DiuDiu777:str-fix, r=Noratrieb
ChrisDenton Apr 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
specify explicit safety guidance for from_utf8_unchecked
  • Loading branch information
DiuDiu777 committed Apr 27, 2025
commit 0795b2d646aa6dbaae2f12c50b60ac7e38e0a91d
2 changes: 1 addition & 1 deletion library/core/src/str/converts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ pub const unsafe fn from_utf8_unchecked(v: &[u8]) -> &str {
/// Converts a slice of bytes to a string slice without checking
/// that the string contains valid UTF-8; mutable version.
///
/// See the immutable version, [`from_utf8_unchecked()`] for more information.
/// See the immutable version, [`from_utf8_unchecked()`] for documentation and safety requirements.
///
/// # Examples
///
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/str/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl str {
/// Converts a slice of bytes to a string slice without checking
/// that the string contains valid UTF-8; mutable version.
///
/// See the immutable version, [`from_utf8_unchecked()`] for more information.
/// See the immutable version, [`from_utf8_unchecked()`] for documentation and safety requirements.
///
/// # Examples
///
Expand Down
Loading