본문으로 건너뛰기

Rust 1.44.0 Release Notes

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

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

범위

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

읽는 법

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

타임라인

Rust 1.44.0 (2020-06-04)

  • Language
    • You can now use async/.await with #[no_std] enabled.
    • Added the unused_braces lint.
    • Expansion-driven outline module parsing #[cfg(FALSE)] mod foo { mod bar { mod baz; // foo/bar/baz.rs doesn't exist, but no error! } }
  • Compiler
    • Rustc now respects the -C codegen-units flag in incremental mode. Additionally when in incremental mode rustc defaults to 256 codegen units.
    • Refactored catch_unwind to have zero-cost, unless unwinding is enabled and a panic is thrown.
    • Added tier 3* support for the aarch64-unknown-none and aarch64-unknown-none-softfloat targets.
    • 그 외 1개 항목은 원문 참고
  • Libraries
    • Special cased vec![] to map directly to Vec::new(). This allows vec![] to be able to be used in const contexts.
    • convert::Infallible now implements Hash.
    • OsString now implements DerefMut and IndexMut returning a &mut OsStr.
    • 그 외 6개 항목은 원문 참고
  • Stabilized APIs
    • PathBuf::with_capacity
    • PathBuf::capacity
    • PathBuf::clear
    • 그 외 9개 항목은 원문 참고
  • Cargo
    • Added the cargo tree command which will print a tree graph of your dependencies. E.g. mdbook v0.3.2 (/Users/src/rust/mdbook) ├── ammonia v3.0.0 │ ├── html5ever v0.24.0 │ │ ├── log v0.4.8 │ │ │ └── cfg-if v0.1.9 │ │ ├── mac v0.1.1 │ │ └── markup5ever v0.9.0 │ │ ├── log v0.4.8 (*) │ │ ├── phf v0.7.24 │ │ │ └── phf_shared v0.7.24 │ │ │ ├── siphasher v0.2.3…
  • Compatibility Notes
    • Rustc now correctly generates static libraries on Windows GNU targets with the .a extension, rather than the previous .lib.
    • Removed the -C no_integrated_as flag from rustc.
    • The file_name property in JSON output of macro errors now points the actual source file rather than the previous format of <NAME macros>. Note: this may not point to a file that actually exists on the user's system.
    • 그 외 3개 항목은 원문 참고

Sources