Rust 1.36.0 Release Notes
// RUST-RELEASE-NOTES— official release note timeline
Rust 1.36.0 공식 release note를 기준으로, 섹션별 앞쪽 항목을 발췌해 변화 흐름을 빠르게 훑을 수 있게 정리했습니다.
범위
- 대상 릴리즈: Rust 1.36.0
- 포함된 릴리즈 수: 1개
- 생성 경로:
scripts/bloggen.py rust-release-docs - 생성일:
2026-07-08 - 원문: rust-lang/rust RELEASES.md
읽는 법
- 이 문서는 해당 Rust 릴리즈 하나만 다룹니다.
- 섹션별 최대 3개 앞쪽 항목만 발췌했으므로, 세부 API 목록은 원문 링크를 확인하세요.
- Compatibility Notes는 업그레이드 전 회귀 위험을 확인하는 체크리스트로 보면 됩니다.
타임라인
Rust 1.36.0 (2019-07-04)
- Language
- Non-Lexical Lifetimes are now enabled on the 2015 edition.
- The order of traits in trait objects no longer affects the semantics of that object. e.g.
dyn Send + fmt::Debugis now equivalent todyn fmt::Debug + Send, where this was previously not the case.
- Libraries
HashMap's implementation has been replaced withhashbrown::HashMapimplementation.TryFromSliceErrornow implementsFrom<Infallible>.mem::needs_dropis now available as a const fn.- 그 외 8개 항목은 원문 참고
- Stabilized APIs
VecDeque::rotate_leftVecDeque::rotate_rightIterator::copied- 그 외 13개 항목은 원문 참고
- Cargo
- Cargo will now produce an error if you attempt to use the name of a required dependency as a feature.
- You can now pass the
--offlineflag to run cargo without accessing the network.
- Compatibility Notes
- With the stabilisation of
mem::MaybeUninit,mem::uninitializeduse is no longer recommended, and will be deprecated in 1.39.0.
- With the stabilisation of
Sources
- Rust release notes — official rust-lang/rust release notes.