Skip to main content

Rust 1.94.0 Release Notes

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

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

범위

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

읽는 법

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

타임라인

Rust 1.94.0 (2026-03-05)

  • Language
    • Impls and impl items inherit dead_code lint level of the corresponding traits and trait items — source
    • Stabilize additional 29 RISC-V target features including large portions of the RVA22U64 / RVA23U64 profiles — source
    • Add warn-by-default unused_visibilities lint for visibility on const _ declarations — source
    • 그 외 2개 항목은 원문 참고
  • Libraries
    • Relax T: Ord bound for some BinaryHeap<T> methods. — source
  • Stabilized APIs
    • <[T]>::array_windowssource
    • <[T]>::element_offsetsource
    • LazyCell::getsource
    • 그 외 16개 항목은 원문 참고
  • Cargo
    • Stabilize the config include key. The top-level include config key allows loading additional config files, enabling better organization, sharing, and management of Cargo configurations across projects and environments. docs #16284 — source
    • Stabilize the pubtime field in registry index. This records when a crate version was published and enables time-based dependency resolution in the future. Note that crates.io will gradually backfill existing packages when a new version is published. Not all crates have pubtime yet. #16369 #16372 — source
    • Cargo now parses TOML v1.1 for manifests and configuration files. Note that using these features in Cargo.toml will raise your development MSRV, but the published manifest remains compatible with older parsers. #16415 — source
    • 그 외 1개 항목은 원문 참고
  • Compatibility Notes
    • Forbid freely casting lifetime bounds of dyn-types — source
    • Make closure capturing have consistent and correct behaviour around patterns Some finer details of how precise closure captures get affected by pattern matching have been changed. In some cases, this can cause a non-move closure that was previously capturing an entire variable by move, to now capture only part of that variable by move, and other parts by bo… — source
    • Standard library macros are now imported via prelude, not via injected #[macro_use] This will raise an error if macros of the same name are glob imported. For example if a crate defines their own matches macro and then glob imports that, it's now ambiguous whether the custom or standard library matches is meant and an explicit import of the name is re… — source
    • 그 외 7개 항목은 원문 참고
  • Platform Support
    • Add riscv64im-unknown-none-elf as a tier 3 target — source

Sources