Skip to main content

Rust 1.92.0 Release Notes

// RUST-RELEASE-NOTES — official release note timeline

Rust 1.92.0 공식 release note를 기준으로, 섹션별 앞쪽 항목을 발췌해 변화 흐름을 빠르게 훑을 수 있게 정리했습니다.

범위

  • 대상 릴리즈: Rust 1.92.0
  • 포함된 릴리즈 수: 1개
  • 생성 경로: scripts/bloggen.py rust-release-docs
  • 생성일: 2026-07-08
  • 원문: rust-lang/rust RELEASES.md

읽는 법

  • 이 문서는 해당 Rust 릴리즈 하나만 다룹니다.
  • 섹션별 최대 3개 앞쪽 항목만 발췌했으므로, 세부 API 목록은 원문 링크를 확인하세요.
  • Compatibility Notes는 업그레이드 전 회귀 위험을 확인하는 체크리스트로 보면 됩니다.

타임라인

Rust 1.92.0 (2025-12-11)

  • Language
    • Document MaybeUninit representation and validity — source
    • Allow &raw [mut | const] for union field in safe code — source
    • Prefer item bounds of associated types over where-bounds for auto-traits and Sizedsource
    • 그 외 6개 항목은 원문 참고
  • Compiler
    • Make mips64el-unknown-linux-muslabi64 link dynamically — source
    • Remove current code for embedding command-line args in PDB Command-line information is typically not needed by debugging tools, and the removed code was causing problems for incremental builds even on targets that don't use PDB debuginfo. — source
  • Libraries
    • Specialize Iterator::eq{_by} for TrustedLen iterators — source
    • Simplify Extend for tuples — source
    • Added details to Debug for EncodeWide . — source
    • 그 외 1개 항목은 원문 참고
  • Stabilized APIs
    • NonZero<u{N}>::div_ceilsource
    • Location::file_as_c_strsource
    • RwLockWriteGuard::downgradesource
    • 그 외 14개 항목은 원문 참고
  • Cargo
    • Added a new chapter to the Cargo book, "Optimizing Build Performance". — source
  • Rustdoc
    • If a trait item appears in rustdoc search, hide the corresponding impl items . Previously a search for "last" would show both Iterator::last as well as impl methods like std::vec::IntoIter::last. Now these impl methods will be hidden, freeing up space for inherent methods like BTreeSet::last. — source
    • Relax rules for identifiers in search . Previously you could only search for identifiers that were valid in rust code, now searches only need to be valid as part of an identifier. For example, you can now perform a search that starts with a digit. — source

Sources