ZENOBench / github /releases_rust.json
fenilsonani's picture
Upload folder using huggingface_hub
48c80fe verified
[
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/258584176",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/258584176/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/258584176/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.91.0",
"id": 258584176,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4Paa5w",
"tag_name": "1.91.0",
"target_commitish": "master",
"name": "Rust 1.91.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-10-30T18:29:34Z",
"updated_at": "2025-10-30T18:29:40Z",
"published_at": "2025-10-30T18:29:40Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.91.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.91.0",
"body": "<a id=\"1.91.0-Language\"></a>\n\n## Language\n\n- [Lower pattern bindings in the order they're written and base drop order on primary bindings' order](https://github.com/rust-lang/rust/pull/143764)\n- [Stabilize declaration of C-style variadic functions for `sysv64`, `win64`, `efiapi`, and `aapcs` ABIs](https://github.com/rust-lang/rust/pull/144066). This brings these ABIs in line with the C ABI: variadic functions can be declared in extern blocks but not defined.\n- [Add `dangling_pointers_from_locals` lint to warn against dangling pointers from local variables](https://github.com/rust-lang/rust/pull/144322)\n- [Upgrade `semicolon_in_expressions_from_macros` from warn to deny](https://github.com/rust-lang/rust/pull/144369)\n- [Stabilize LoongArch32 inline assembly](https://github.com/rust-lang/rust/pull/144402)\n- [Add warn-by-default `integer_to_ptr_transmutes` lint against integer-to-pointer transmutes](https://github.com/rust-lang/rust/pull/144531)\n- [Stabilize `sse4a` and `tbm` target features](https://github.com/rust-lang/rust/pull/144542)\n- [Add `target_env = \"macabi\"` and `target_env = \"sim\"` cfgs](https://github.com/rust-lang/rust/pull/139451) as replacements for the `target_abi` cfgs with the same values.\n\n<a id=\"1.91.0-Compiler\"></a>\n\n## Compiler\n\n- [Don't warn on never-to-any `as` casts as unreachable](https://github.com/rust-lang/rust/pull/144804)\n\n<a id=\"1.91.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Promote `aarch64-pc-windows-gnullvm` and `x86_64-pc-windows-gnullvm` to Tier 2 with host tools.](https://github.com/rust-lang/rust/pull/143031) Note: llvm-tools and MSI installers are missing but will be added in future releases.\n- [Promote `aarch64-pc-windows-msvc` to Tier 1](https://github.com/rust-lang/rust/pull/145682)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.91.0-Libraries\"></a>\n\n## Libraries\n\n- [Print thread ID in panic message](https://github.com/rust-lang/rust/pull/115746)\n- [Fix overly restrictive lifetime in `core::panic::Location::file` return type](https://github.com/rust-lang/rust/pull/132087)\n- [Guarantee parameter order for `_by()` variants of `min` / `max`/ `minmax` in `std::cmp`](https://github.com/rust-lang/rust/pull/139357)\n- [Document assumptions about `Clone` and `Eq` traits](https://github.com/rust-lang/rust/pull/144330/)\n- [`std::thread`: Return error if setting thread stack size fails](https://github.com/rust-lang/rust/pull/144210) This used to panic within the standard library.\n\n<a id=\"1.91.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`Path::file_prefix`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#method.file_prefix)\n- [`AtomicPtr::fetch_ptr_add`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_ptr_add)\n- [`AtomicPtr::fetch_ptr_sub`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_ptr_sub)\n- [`AtomicPtr::fetch_byte_add`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_byte_add)\n- [`AtomicPtr::fetch_byte_sub`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_byte_sub)\n- [`AtomicPtr::fetch_or`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_or)\n- [`AtomicPtr::fetch_and`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_and)\n- [`AtomicPtr::fetch_xor`](https://doc.rust-lang.org/stable/std/sync/atomic/struct.AtomicPtr.html#method.fetch_xor)\n- [`{integer}::strict_add`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_add)\n- [`{integer}::strict_sub`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_sub)\n- [`{integer}::strict_mul`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_mul)\n- [`{integer}::strict_div`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_div)\n- [`{integer}::strict_div_euclid`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_div_euclid)\n- [`{integer}::strict_rem`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_rem)\n- [`{integer}::strict_rem_euclid`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_rem_euclid)\n- [`{integer}::strict_neg`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_neg)\n- [`{integer}::strict_shl`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_shl)\n- [`{integer}::strict_shr`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_shr)\n- [`{integer}::strict_pow`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_pow)\n- [`i{N}::strict_add_unsigned`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_add_unsigned)\n- [`i{N}::strict_sub_unsigned`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_sub_unsigned)\n- [`i{N}::strict_abs`](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.strict_abs)\n- [`u{N}::strict_add_signed`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_add_signed)\n- [`u{N}::strict_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.u32.html#method.strict_sub_signed)\n- [`PanicHookInfo::payload_as_str`](https://doc.rust-lang.org/stable/std/panic/struct.PanicHookInfo.html#method.payload_as_str)\n- [`core::iter::chain`](https://doc.rust-lang.org/stable/core/iter/fn.chain.html)\n- [`u{N}::checked_signed_diff`](https://doc.rust-lang.org/stable/std/primitive.u16.html#method.checked_signed_diff)\n- [`core::array::repeat`](https://doc.rust-lang.org/stable/core/array/fn.repeat.html)\n- [`PathBuf::add_extension`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.add_extension)\n- [`PathBuf::with_added_extension`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.with_added_extension)\n- [`Duration::from_mins`](https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.from_mins)\n- [`Duration::from_hours`](https://doc.rust-lang.org/stable/std/time/struct.Duration.html#method.from_hours)\n- [`impl PartialEq<str> for PathBuf`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#impl-PartialEq%3Cstr%3E-for-PathBuf)\n- [`impl PartialEq<String> for PathBuf`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#impl-PartialEq%3CString%3E-for-PathBuf)\n- [`impl PartialEq<str> for Path`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#impl-PartialEq%3Cstr%3E-for-Path)\n- [`impl PartialEq<String> for Path`](https://doc.rust-lang.org/stable/std/path/struct.Path.html#impl-PartialEq%3CString%3E-for-Path)\n- [`impl PartialEq<PathBuf> for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-PartialEq%3CPathBuf%3E-for-String)\n- [`impl PartialEq<Path> for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-PartialEq%3CPath%3E-for-String)\n- [`impl PartialEq<PathBuf> for str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-PartialEq%3CPathBuf%3E-for-str)\n- [`impl PartialEq<Path> for str`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-PartialEq%3CPath%3E-for-str)\n- [`Ipv4Addr::from_octets`](https://doc.rust-lang.org/stable/std/net/struct.Ipv4Addr.html#method.from_octets)\n- [`Ipv6Addr::from_octets`](https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.from_octets)\n- [`Ipv6Addr::from_segments`](https://doc.rust-lang.org/stable/std/net/struct.Ipv6Addr.html#method.from_segments)\n- [`impl<T> Default for Pin<Box<T>> where Box<T>: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CBox%3CT%3E%3E)\n- [`impl<T> Default for Pin<Rc<T>> where Rc<T>: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CRc%3CT%3E%3E)\n- [`impl<T> Default for Pin<Arc<T>> where Arc<T>: Default, T: ?Sized`](https://doc.rust-lang.org/stable/std/default/trait.Default.html#impl-Default-for-Pin%3CArc%3CT%3E%3E)\n- [`Cell::as_array_of_cells`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.as_array_of_cells)\n- [`u{N}::carrying_add`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_add)\n- [`u{N}::borrowing_sub`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.borrowing_sub)\n- [`u{N}::carrying_mul`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_mul)\n- [`u{N}::carrying_mul_add`](https://doc.rust-lang.org/stable/std/primitive.u64.html#method.carrying_mul_add)\n- [`BTreeMap::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html#method.extract_if)\n- [`BTreeSet::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.BTreeSet.html#method.extract_if)\n- [`impl Debug for windows::ffi::EncodeWide<'_>`](https://doc.rust-lang.org/stable/std/os/windows/ffi/struct.EncodeWide.html#impl-Debug-for-EncodeWide%3C'_%3E)\n- [`str::ceil_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.ceil_char_boundary)\n- [`str::floor_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.floor_char_boundary)\n- [`impl Sum for Saturating<u{N}>`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Sum-for-Saturating%3Cu32%3E)\n- [`impl Sum<&Self> for Saturating<u{N}>`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Sum%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E)\n- [`impl Product for Saturating<u{N}>`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Product-for-Saturating%3Cu32%3E)\n- [`impl Product<&Self> for Saturating<u{N}>`](https://doc.rust-lang.org/stable/std/num/struct.Saturating.html#impl-Product%3C%26Saturating%3Cu32%3E%3E-for-Saturating%3Cu32%3E)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T; N]>::each_ref`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_ref)\n- [`<[T; N]>::each_mut`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.each_mut)\n- [`OsString::new`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.new)\n- [`PathBuf::new`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.new)\n- [`TypeId::of`](https://doc.rust-lang.org/stable/std/any/struct.TypeId.html#method.of)\n- [`ptr::with_exposed_provenance`](https://doc.rust-lang.org/stable/std/ptr/fn.with_exposed_provenance.html)\n- [`ptr::with_exposed_provenance_mut`](https://doc.rust-lang.org/stable/std/ptr/fn.with_exposed_provenance_mut.html)\n\n<a id=\"1.91.0-Cargo\"></a>\n\n## Cargo\n\n- 🎉 Stabilize `build.build-dir`. This config sets the directory where intermediate build artifacts are stored. These artifacts are produced by Cargo and rustc during the build process. End users usually won't need to interact with them, and the layout inside `build-dir` is an implementation detail that may change without notice. ([config doc](https://doc.rust-lang.org/stable/cargo/reference/config.html#buildbuild-dir)) ([build cache doc](https://doc.rust-lang.org/stable/cargo/reference/build-cache.html)) [\\#15833](https://github.com/rust-lang/cargo/pull/15833) [\\#15840](https://github.com/rust-lang/cargo/pull/15840)\n- The `--target` flag and the `build.target` configuration can now take literal `\"host-tuple\"` string, which will internally be substituted by the host machine's target triple. [\\#15838](https://github.com/rust-lang/cargo/pull/15838) [\\#16003](https://github.com/rust-lang/cargo/pull/16003) [\\#16032](https://github.com/rust-lang/cargo/pull/16032)\n\n<a id=\"1.91.0-Rustdoc\"></a>\n\n## Rustdoc\n\n- [In search results, rank doc aliases lower than non-alias items with the same name](https://github.com/rust-lang/rust/pull/145100)\n- [Raw pointers now work in type-based search like references](https://github.com/rust-lang/rust/pull/145731). This means you can now search for things like `*const u8 ->`, and additionally functions that take or return raw pointers will now display their signature properly in search results.\n\n<a id=\"1.91.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Always require coroutine captures to be drop-live](https://github.com/rust-lang/rust/pull/144156)\n- [Apple: Always pass SDK root when linking with `cc`, and pass it via `SDKROOT` env var](https://github.com/rust-lang/rust/pull/131477). This should fix linking issues with `rustc` running inside Xcode. Libraries in `/usr/local/lib` may no longer be linked automatically, if you develop or use a crate that relies on this, you should explicitly set `cargo::rustc-link-search=/usr/local/lib` in a `build.rs` script.\n- [Relaxed bounds in associated type bound position like in `TraitRef<AssocTy: ?Sized>` are now correctly forbidden](https://github.com/rust-lang/rust/pull/135331)\n- [Add unstable `#[sanitize(xyz = \"on|off\")]` built-in attribute that shadows procedural macros with the same name](https://github.com/rust-lang/rust/pull/142681)\n- [Fix the drop checker being more permissive for bindings declared with let-else](https://github.com/rust-lang/rust/pull/143028)\n- [Be more strict when parsing attributes, erroring on many invalid attributes](https://github.com/rust-lang/rust/pull/144689)\n - [Error on invalid `#[should_panic]` attributes](https://github.com/rust-lang/rust/pull/143808)\n - [Error on invalid `#[link]` attributes](https://github.com/rust-lang/rust/pull/143193)\n- [Mark all deprecation lints in name resolution as deny-by-default and also report in dependencies](https://github.com/rust-lang/rust/pull/143929)\n- The lint `semicolon_in_expressions_from_macros`, for `macro_rules!` macros in expression position that expand to end in a semicolon (`;`), is now deny-by-default. It was already warn-by-default, and a future compatibility warning (FCW) that warned even in dependencies. This lint will become a hard error in the future.\n- [Trait impl modifiers (e.g., `unsafe`, `!`, `default`) in inherent impls are no longer syntactically valid](https://github.com/rust-lang/rust/pull/144386)\n- [Start reporting future breakage for `ill_formed_attribute_input` in dependencies](https://github.com/rust-lang/rust/pull/144544)\n- [Restrict the scope of temporaries created by the macros `pin!`, `format_args!`, `write!`, and `writeln!` in `if let` scrutinees in Rust Edition 2024.](https://github.com/rust-lang/rust/pull/145342) This applies [Rust Edition 2024's `if let` temporary scope rules](https://doc.rust-lang.org/edition-guide/rust-2024/temporary-if-let-scope.html) to these temporaries, which previously could live past the `if` expression regardless of Edition.\n- [Invalid numeric literal suffixes in tuple indexing, tuple struct indexing, and struct field name positions are now correctly rejected](https://github.com/rust-lang/rust/pull/145463)\n- [Closures marked with the keyword `static` are now syntactically invalid](https://github.com/rust-lang/rust/pull/145604)\n- [Shebangs inside `--cfg` and `--check-cfg` arguments are no longer allowed](https://github.com/rust-lang/rust/pull/146211)\n- [Add future incompatibility lint for temporary lifetime shortening in Rust 1.92](https://github.com/rust-lang/rust/pull/147056)\n\nCargo compatibility notes:\n\n- `cargo publish` no longer keeps `.crate` tarballs as final build artifacts when `build.build-dir` is set. These tarballs were previously included due to an oversight and are now treated as intermediate artifacts. To get `.crate` tarballs as final artifacts, use `cargo package`. In a future version, this change will apply regardless of `build.build-dir`. [\\#15910](https://github.com/rust-lang/cargo/pull/15910)\n- Adjust Cargo messages to match rustc diagnostic style. This changes some of the terminal colors used by Cargo messages. [\\#15928](https://github.com/rust-lang/cargo/pull/15928)\n- Tools and projects relying on the [internal details of Cargo's `build-dir`](https://doc.rust-lang.org/cargo/reference/build-cache.html) may not work for users changing their `build-dir` layout. For those doing so, we'd recommend proactively testing these cases particularly as we are considering changing the default location of the `build-dir` in the future ([cargo\\#16147](https://github.com/rust-lang/cargo/issues/16147)). If you can't migrate off of Cargo's internal details, we'd like to learn more about your use case as we prepare to change the layout of the `build-dir` ([cargo\\#15010](https://github.com/rust-lang/cargo/issues/15010)).\n\n<a id=\"1.91.0-Internal-Changes\"></a>\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Update to LLVM 21](https://github.com/rust-lang/rust/pull/143684)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/258584176/reactions",
"total_count": 228,
"+1": 88,
"-1": 0,
"laugh": 13,
"hooray": 66,
"confused": 0,
"heart": 28,
"rocket": 26,
"eyes": 7
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/248418092",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/248418092/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/248418092/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.90.0",
"id": 248418092,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4Ozo8s",
"tag_name": "1.90.0",
"target_commitish": "master",
"name": "Rust 1.90.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-09-18T13:31:21Z",
"updated_at": "2025-09-18T20:02:56Z",
"published_at": "2025-09-18T20:02:56Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.90.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.90.0",
"body": "<a id=\"1.90-Language\"></a>\n\n## Language\n\n- [Split up the `unknown_or_malformed_diagnostic_attributes` lint](https://github.com/rust-lang/rust/pull/140717). This lint has been split up into four finer-grained lints, with `unknown_or_malformed_diagnostic_attributes` now being the lint group that contains these lints:\n 1. `unknown_diagnostic_attributes`: unknown to the current compiler\n 2. `misplaced_diagnostic_attributes`: placed on the wrong item\n 3. `malformed_diagnostic_attributes`: malformed attribute syntax or options\n 4. `malformed_diagnostic_format_literals`: malformed format string literal\n- [Allow constants whose final value has references to mutable/external memory, but reject such constants as patterns](https://github.com/rust-lang/rust/pull/140942)\n- [Allow volatile access to non-Rust memory, including address 0](https://github.com/rust-lang/rust/pull/141260)\n\n<a id=\"1.90-Compiler\"></a>\n\n## Compiler\n\n- [Use `lld` by default on `x86_64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/140525).\n- [Tier 3 `musl` targets now link dynamically by default](https://github.com/rust-lang/rust/pull/144410). Affected targets:\n - `mips64-unknown-linux-muslabi64`\n - `powerpc64-unknown-linux-musl`\n - `powerpc-unknown-linux-musl`\n - `powerpc-unknown-linux-muslspe`\n - `riscv32gc-unknown-linux-musl`\n - `s390x-unknown-linux-musl`\n - `thumbv7neon-unknown-linux-musleabihf`\n\n<a id=\"1.90-Platform-Support\"></a>\n\n## Platform Support\n\n- [Demote `x86_64-apple-darwin` to Tier 2 with host tools](https://github.com/rust-lang/rust/pull/145252)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.90-Libraries\"></a>\n\n## Libraries\n\n- [Stabilize `u*::{checked,overflowing,saturating,wrapping}_sub_signed`](https://github.com/rust-lang/rust/issues/126043)\n- [Allow comparisons between `CStr`, `CString`, and `Cow<CStr>`](https://github.com/rust-lang/rust/pull/137268)\n- [Remove some unsized tuple impls since unsized tuples can't be constructed](https://github.com/rust-lang/rust/pull/138340)\n- [Set `MSG_NOSIGNAL` for `UnixStream`](https://github.com/rust-lang/rust/pull/140005)\n- [`proc_macro::Ident::new` now supports `$crate`.](https://github.com/rust-lang/rust/pull/141996)\n- [Guarantee the pointer returned from `Thread::into_raw` has at least 8 bytes of alignment](https://github.com/rust-lang/rust/pull/143859)\n\n<a id=\"1.90-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`u{n}::checked_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.checked_sub_signed)\n- [`u{n}::overflowing_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.overflowing_sub_signed)\n- [`u{n}::saturating_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.saturating_sub_signed)\n- [`u{n}::wrapping_sub_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.wrapping_sub_signed)\n- [`impl Copy for IntErrorKind`](https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Copy-for-IntErrorKind)\n- [`impl Hash for IntErrorKind`](https://doc.rust-lang.org/stable/std/num/enum.IntErrorKind.html#impl-Hash-for-IntErrorKind)\n- [`impl PartialEq<&CStr> for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3C%26CStr%3E-for-CStr)\n- [`impl PartialEq<CString> for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCString%3E-for-CStr)\n- [`impl PartialEq<Cow<CStr>> for CStr`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CStr)\n- [`impl PartialEq<&CStr> for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3C%26CStr%3E-for-CString)\n- [`impl PartialEq<CStr> for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCStr%3E-for-CString)\n- [`impl PartialEq<Cow<CStr>> for CString`](https://doc.rust-lang.org/stable/std/ffi/struct.CString.html#impl-PartialEq%3CCow%3C'_,+CStr%3E%3E-for-CString)\n- [`impl PartialEq<&CStr> for Cow<CStr>`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3C%26CStr%3E-for-Cow%3C'_,+CStr%3E)\n- [`impl PartialEq<CStr> for Cow<CStr>`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCStr%3E-for-Cow%3C'_,+CStr%3E)\n- [`impl PartialEq<CString> for Cow<CStr>`](https://doc.rust-lang.org/stable/std/borrow/enum.Cow.html#impl-PartialEq%3CCString%3E-for-Cow%3C'_,+CStr%3E)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T]>::reverse`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.reverse)\n- [`f32::floor`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.floor)\n- [`f32::ceil`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.ceil)\n- [`f32::trunc`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.trunc)\n- [`f32::fract`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.fract)\n- [`f32::round`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round)\n- [`f32::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.round_ties_even)\n- [`f64::floor`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.floor)\n- [`f64::ceil`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.ceil)\n- [`f64::trunc`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.trunc)\n- [`f64::fract`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.fract)\n- [`f64::round`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round)\n- [`f64::round_ties_even`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.round_ties_even)\n\n<a id=\"1.90-Cargo\"></a>\n\n## Cargo\n\n- [Add `http.proxy-cainfo` config for proxy certs](https://github.com/rust-lang/cargo/pull/15374/)\n- [Use `gix` for `cargo package`](https://github.com/rust-lang/cargo/pull/15534/)\n- [feat(publish): Stabilize multi-package publishing](https://github.com/rust-lang/cargo/pull/15636/)\n\n<a id=\"1.90-Rustdoc\"></a>\n\n## Rustdoc\n\n- [Add ways to collapse all impl blocks](https://github.com/rust-lang/rust/pull/141663). Previously the \"Summary\" button and \"-\" keyboard shortcut would never collapse `impl` blocks, now they do when shift is held\n- [Display unsafe attributes with `unsafe()` wrappers](https://github.com/rust-lang/rust/pull/143662)\n\n<a id=\"1.90-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Use `lld` by default on `x86_64-unknown-linux-gnu`](https://github.com/rust-lang/rust/pull/140525). See also <https://blog.rust-lang.org/2025/09/01/rust-lld-on-1.90.0-stable/>.\n- [Make `core::iter::Fuse`'s `Default` impl construct `I::default()` internally as promised in the docs instead of always being empty](https://github.com/rust-lang/rust/pull/140985)\n- [Set `MSG_NOSIGNAL` for `UnixStream`](https://github.com/rust-lang/rust/pull/140005) This may change program behavior but results in the same behavior as other primitives (e.g., stdout, network sockets). Programs relying on signals to terminate them should update handling of sockets to handle errors on write by exiting.\n- [On Unix `std::env::home_dir` will use the fallback if the `HOME` environment variable is empty](https://github.com/rust-lang/rust/pull/141840)\n- We now [reject unsupported `extern \"{abi}\"`s consistently in all positions](https://github.com/rust-lang/rust/pull/142134). This primarily affects the use of implementing traits on an `extern \"{abi}\"` function pointer, like `extern \"stdcall\" fn()`, on a platform that doesn't support that, like aarch64-unknown-linux-gnu. Direct usage of these unsupported ABI strings by declaring or defining functions was already rejected, so this is only a change for consistency.\n- [const-eval: error when initializing a static writes to that static](https://github.com/rust-lang/rust/pull/143084)\n- [Check that the `proc_macro_derive` macro has correct arguments when applied to the crate root](https://github.com/rust-lang/rust/pull/143607)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/248418092/reactions",
"total_count": 319,
"+1": 143,
"-1": 0,
"laugh": 18,
"hooray": 54,
"confused": 0,
"heart": 52,
"rocket": 42,
"eyes": 10
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/238254672",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/238254672/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/238254672/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.89.0",
"id": 238254672,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4OM3pQ",
"tag_name": "1.89.0",
"target_commitish": "master",
"name": "Rust 1.89.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-08-07T10:55:02Z",
"updated_at": "2025-08-07T10:55:11Z",
"published_at": "2025-08-07T10:55:11Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.89.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.89.0",
"body": "<a id=\"1.89.0-Language\"></a>\n\n## Language\n\n- [Stabilize explicitly inferred const arguments (`feature(generic_arg_infer)`)](https://github.com/rust-lang/rust/pull/141610)\n- [Add a warn-by-default `mismatched_lifetime_syntaxes` lint.](https://github.com/rust-lang/rust/pull/138677) This lint detects when the same lifetime is referred to by different syntax categories between function arguments and return values, which can be confusing to read, especially in unsafe code. This lint supersedes the warn-by-default `elided_named_lifetimes` lint.\n- [Expand `unpredictable_function_pointer_comparisons` to also lint on function pointer comparisons in external macros](https://github.com/rust-lang/rust/pull/134536)\n- [Make the `dangerous_implicit_autorefs` lint deny-by-default](https://github.com/rust-lang/rust/pull/141661)\n- [Stabilize the avx512 target features](https://github.com/rust-lang/rust/pull/138940)\n- [Stabilize `kl` and `widekl` target features for x86](https://github.com/rust-lang/rust/pull/140766)\n- [Stabilize `sha512`, `sm3` and `sm4` target features for x86](https://github.com/rust-lang/rust/pull/140767)\n- [Stabilize LoongArch target features `f`, `d`, `frecipe`, `lasx`, `lbt`, `lsx`, and `lvz`](https://github.com/rust-lang/rust/pull/135015)\n- [Remove `i128` and `u128` from `improper_ctypes_definitions`](https://github.com/rust-lang/rust/pull/137306)\n- [Stabilize `repr128` (`#[repr(u128)]`, `#[repr(i128)]`)](https://github.com/rust-lang/rust/pull/138285)\n- [Allow `#![doc(test(attr(..)))]` everywhere](https://github.com/rust-lang/rust/pull/140560)\n- [Extend temporary lifetime extension to also go through tuple struct and tuple variant constructors](https://github.com/rust-lang/rust/pull/140593)\n- [`extern \"C\"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI](https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/)\n\n<a id=\"1.89.0-Compiler\"></a>\n\n## Compiler\n\n- [Default to non-leaf frame pointers on aarch64-linux](https://github.com/rust-lang/rust/pull/140832)\n- [Enable non-leaf frame pointers for Arm64EC Windows](https://github.com/rust-lang/rust/pull/140862)\n- [Set Apple frame pointers by architecture](https://github.com/rust-lang/rust/pull/141797)\n\n<a id=\"1.89.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Add new Tier-3 targets `loongarch32-unknown-none` and `loongarch32-unknown-none-softfloat`](https://github.com/rust-lang/rust/pull/142053)\n- [`x86_64-apple-darwin` is in the process of being demoted to Tier 2 with host tools](https://github.com/rust-lang/rfcs/pull/3841)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.89.0-Libraries\"></a>\n\n## Libraries\n\n- [Specify the base path for `file!`](https://github.com/rust-lang/rust/pull/134442)\n- [Allow storing `format_args!()` in a variable](https://github.com/rust-lang/rust/pull/140748)\n- [Add `#[must_use]` to `[T; N]::map`](https://github.com/rust-lang/rust/pull/140957)\n- [Implement `DerefMut` for `Lazy{Cell,Lock}`](https://github.com/rust-lang/rust/pull/129334)\n- [Implement `Default` for `array::IntoIter`](https://github.com/rust-lang/rust/pull/141574)\n- [Implement `Clone` for `slice::ChunkBy`](https://github.com/rust-lang/rust/pull/138016)\n- [Implement `io::Seek` for `io::Take`](https://github.com/rust-lang/rust/pull/138023)\n\n<a id=\"1.89.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`NonZero<char>`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html)\n- Many intrinsics for x86, not enumerated here\n - [AVX512 intrinsics](https://github.com/rust-lang/rust/issues/111137)\n - [`SHA512`, `SM3` and `SM4` intrinsics](https://github.com/rust-lang/rust/issues/126624)\n- [`File::lock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock)\n- [`File::lock_shared`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.lock_shared)\n- [`File::try_lock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock)\n- [`File::try_lock_shared`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.try_lock_shared)\n- [`File::unlock`](https://doc.rust-lang.org/stable/std/fs/struct.File.html#method.unlock)\n- [`NonNull::from_ref`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_ref)\n- [`NonNull::from_mut`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.from_mut)\n- [`NonNull::without_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.without_provenance)\n- [`NonNull::with_exposed_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.with_exposed_provenance)\n- [`NonNull::expose_provenance`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.expose_provenance)\n- [`OsString::leak`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.leak)\n- [`PathBuf::leak`](https://doc.rust-lang.org/stable/std/path/struct.PathBuf.html#method.leak)\n- [`Result::flatten`](https://doc.rust-lang.org/stable/std/result/enum.Result.html#method.flatten)\n- [`std::os::linux::net::TcpStreamExt::quickack`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.quickack)\n- [`std::os::linux::net::TcpStreamExt::set_quickack`](https://doc.rust-lang.org/stable/std/os/linux/net/trait.TcpStreamExt.html#tymethod.set_quickack)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`<[T; N]>::as_mut_slice`](https://doc.rust-lang.org/stable/std/primitive.array.html#method.as_mut_slice)\n- [`<[u8]>::eq_ignore_ascii_case`](https://doc.rust-lang.org/stable/std/primitive.slice.html#impl-%5Bu8%5D/method.eq_ignore_ascii_case)\n- [`str::eq_ignore_ascii_case`](https://doc.rust-lang.org/stable/std/primitive.str.html#impl-str/method.eq_ignore_ascii_case)\n\n<a id=\"1.89.0-Cargo\"></a>\n\n## Cargo\n\n- [`cargo fix` and `cargo clippy --fix` now default to the same Cargo target selection as other build commands.](https://github.com/rust-lang/cargo/pull/15192/) Previously it would apply to all targets (like binaries, examples, tests, etc.). The `--edition` flag still applies to all targets.\n- [Stabilize doctest-xcompile.](https://github.com/rust-lang/cargo/pull/15462/) Doctests are now tested when cross-compiling. Just like other tests, it will use the [`runner` setting](https://doc.rust-lang.org/cargo/reference/config.html#targettriplerunner) to run the tests. If you need to disable tests for a target, you can use the [ignore doctest attribute](https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#ignoring-targets) to specify the targets to ignore.\n\n<a id=\"1.89.0-Rustdoc\"></a>\n\n## Rustdoc\n\n- [On mobile, make the sidebar full width and linewrap](https://github.com/rust-lang/rust/pull/139831). This makes long section and item names much easier to deal with on mobile.\n\n<a id=\"1.89.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Make `missing_fragment_specifier` an unconditional error](https://github.com/rust-lang/rust/pull/128425)\n- [Enabling the `neon` target feature on `aarch64-unknown-none-softfloat` causes a warning](https://github.com/rust-lang/rust/pull/135160) because mixing code with and without that target feature is not properly supported by LLVM\n- [Sized Hierarchy: Part I](https://github.com/rust-lang/rust/pull/137944)\n - Introduces a small breaking change affecting `?Sized` bounds on impls on recursive types which contain associated type projections. It is not expected to affect any existing published crates. Can be fixed by refactoring the involved types or opting into the `sized_hierarchy` unstable feature. See the [FCP report](https://github.com/rust-lang/rust/pull/137944#issuecomment-2912207485) for a code example.\n- The warn-by-default `elided_named_lifetimes` lint is [superseded by the warn-by-default `mismatched_lifetime_syntaxes` lint.](https://github.com/rust-lang/rust/pull/138677)\n- [Error on recursive opaque types earlier in the type checker](https://github.com/rust-lang/rust/pull/139419)\n- [Type inference side effects from requiring element types of array repeat expressions are `Copy` are now only available at the end of type checking](https://github.com/rust-lang/rust/pull/139635)\n- [The deprecated accidentally-stable `std::intrinsics::{copy,copy_nonoverlapping,write_bytes}` are now proper intrinsics](https://github.com/rust-lang/rust/pull/139916). There are no debug assertions guarding against UB, and they cannot be coerced to function pointers.\n- [Remove long-deprecated `std::intrinsics::drop_in_place`](https://github.com/rust-lang/rust/pull/140151)\n- [Make well-formedness predicates no longer coinductive](https://github.com/rust-lang/rust/pull/140208)\n- [Remove hack when checking impl method compatibility](https://github.com/rust-lang/rust/pull/140557)\n- [Remove unnecessary type inference due to built-in trait object impls](https://github.com/rust-lang/rust/pull/141352)\n- [Lint against \"stdcall\", \"fastcall\", and \"cdecl\" on non-x86-32 targets](https://github.com/rust-lang/rust/pull/141435)\n- [Future incompatibility warnings relating to the never type (`!`) are now reported in dependencies](https://github.com/rust-lang/rust/pull/141937)\n- [Ensure `std::ptr::copy_*` intrinsics also perform the static self-init checks](https://github.com/rust-lang/rust/pull/142575)\n- [`extern \"C\"` functions on the `wasm32-unknown-unknown` target now have a standards compliant ABI](https://blog.rust-lang.org/2025/04/04/c-abi-changes-for-wasm32-unknown-unknown/)\n\n<a id=\"1.89.0-Internal-Changes\"></a>\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Correctly un-remap compiler sources paths with the `rustc-dev` component](https://github.com/rust-lang/rust/pull/142377)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/238254672/reactions",
"total_count": 272,
"+1": 120,
"-1": 0,
"laugh": 9,
"hooray": 53,
"confused": 0,
"heart": 41,
"rocket": 38,
"eyes": 11
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/228093646",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/228093646/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/228093646/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.88.0",
"id": 228093646,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4NmG7O",
"tag_name": "1.88.0",
"target_commitish": "master",
"name": "Rust 1.88.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-06-26T18:10:13Z",
"updated_at": "2025-06-27T03:56:49Z",
"published_at": "2025-06-26T18:10:22Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.88.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.88.0",
"body": "<a id=\"1.88.0-Language\"></a>\n\n## Language\n\n- [Stabilize `#![feature(let_chains)]` in the 2024 edition.](https://github.com/rust-lang/rust/pull/132833) This feature allows `&&`-chaining `let` statements inside `if` and `while`, allowing intermixture with boolean expressions. The patterns inside the `let` sub-expressions can be irrefutable or refutable.\n- [Stabilize `#![feature(naked_functions)]`.](https://github.com/rust-lang/rust/pull/134213) Naked functions allow writing functions with no compiler-generated epilogue and prologue, allowing full control over the generated assembly for a particular function.\n- [Stabilize `#![feature(cfg_boolean_literals)]`.](https://github.com/rust-lang/rust/pull/138632) This allows using boolean literals as `cfg` predicates, e.g. `#[cfg(true)]` and `#[cfg(false)]`.\n- [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.\n- [Add warn-by-default `dangerous_implicit_autorefs` lint against implicit autoref of raw pointer dereference.](https://github.com/rust-lang/rust/pull/123239) The lint [will be bumped to deny-by-default](https://github.com/rust-lang/rust/pull/141661) in the next version of Rust.\n- [Add `invalid_null_arguments` lint to prevent invalid usage of null pointers.](https://github.com/rust-lang/rust/pull/119220) This lint is uplifted from `clippy::invalid_null_ptr_usage`.\n- [Change trait impl candidate preference for builtin impls and trivial where-clauses.](https://github.com/rust-lang/rust/pull/138176)\n- [Check types of generic const parameter defaults](https://github.com/rust-lang/rust/pull/139646)\n\n<a id=\"1.88.0-Compiler\"></a>\n\n## Compiler\n\n- [Stabilize `-Cdwarf-version` for selecting the version of DWARF debug information to generate.](https://github.com/rust-lang/rust/pull/136926)\n\n<a id=\"1.88.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Demote `i686-pc-windows-gnu` to Tier 2.](https://blog.rust-lang.org/2025/05/26/demoting-i686-pc-windows-gnu/)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.88.0-Libraries\"></a>\n\n## Libraries\n\n- [Remove backticks from `#[should_panic]` test failure message.](https://github.com/rust-lang/rust/pull/136160)\n- [Guarantee that `[T; N]::from_fn` is generated in order of increasing indices.](https://github.com/rust-lang/rust/pull/139099), for those passing it a stateful closure.\n- [The libtest flag `--nocapture` is deprecated in favor of the more consistent `--no-capture` flag.](https://github.com/rust-lang/rust/pull/139224)\n- [Guarantee that `{float}::NAN` is a quiet NaN.](https://github.com/rust-lang/rust/pull/139483)\n\n<a id=\"1.88.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`Cell::update`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.update)\n- [`impl Default for *const T`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#impl-Default-for-*const+T)\n- [`impl Default for *mut T`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#impl-Default-for-*mut+T)\n- [`HashMap::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.extract_if)\n- [`HashSet::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.HashSet.html#method.extract_if)\n- [`hint::select_unpredictable`](https://doc.rust-lang.org/stable/std/hint/fn.select_unpredictable.html)\n- [`proc_macro::Span::line`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.line)\n- [`proc_macro::Span::column`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.column)\n- [`proc_macro::Span::start`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.start)\n- [`proc_macro::Span::end`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.end)\n- [`proc_macro::Span::file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.file)\n- [`proc_macro::Span::local_file`](https://doc.rust-lang.org/stable/proc_macro/struct.Span.html#method.local_file)\n- [`<[T]>::as_chunks`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks)\n- [`<[T]>::as_chunks_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_mut)\n- [`<[T]>::as_chunks_unchecked`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_unchecked)\n- [`<[T]>::as_chunks_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_chunks_unchecked_mut)\n- [`<[T]>::as_rchunks`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_rchunks)\n- [`<[T]>::as_rchunks_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_rchunks_mut)\n- [`mod ffi::c_str`](https://doc.rust-lang.org/stable/std/ffi/c_str/index.html)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`NonNull<T>::replace`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.replace)\n- [`<*mut T>::replace`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.replace)\n- [`std::ptr::swap_nonoverlapping`](https://doc.rust-lang.org/stable/std/ptr/fn.swap_nonoverlapping.html)\n- [`Cell::replace`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.replace)\n- [`Cell::get`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.get)\n- [`Cell::get_mut`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.get_mut)\n- [`Cell::from_mut`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.from_mut)\n- [`Cell::as_slice_of_cells`](https://doc.rust-lang.org/stable/std/cell/struct.Cell.html#method.as_slice_of_cells)\n\n<a id=\"1.88.0-Cargo\"></a>\n\n## Cargo\n\n- [Stabilize automatic garbage collection.](https://github.com/rust-lang/cargo/pull/14287/)\n- [use `zlib-rs` for gzip compression in rust code](https://github.com/rust-lang/cargo/pull/15417/)\n\n<a id=\"1.88.0-Rustdoc\"></a>\n\n## Rustdoc\n\n- [Doctests can be ignored based on target names using `ignore-*` attributes.](https://github.com/rust-lang/rust/pull/137096)\n- [Stabilize the `--test-runtool` and `--test-runtool-arg` CLI options to specify a program (like qemu) and its arguments to run a doctest.](https://github.com/rust-lang/rust/pull/137096)\n\n<a id=\"1.88.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Finish changing the internal representation of pasted tokens](https://github.com/rust-lang/rust/pull/124141). Certain invalid declarative macros that were previously accepted in obscure circumstances are now correctly rejected by the compiler. Use of a `tt` fragment specifier can often fix these macros.\n- [Fully de-stabilize the `#[bench]` attribute](https://github.com/rust-lang/rust/pull/134273). Usage of `#[bench]` without `#![feature(custom_test_frameworks)]` already triggered a deny-by-default future-incompatibility lint since Rust 1.77, but will now become a hard error.\n- [Fix borrow checking some always-true patterns.](https://github.com/rust-lang/rust/pull/139042) The borrow checker was overly permissive in some cases, allowing programs that shouldn't have compiled.\n- [Update the minimum external LLVM to 19.](https://github.com/rust-lang/rust/pull/139275)\n- [Make it a hard error to use a vector type with a non-Rust ABI without enabling the required target feature.](https://github.com/rust-lang/rust/pull/139309)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/228093646/reactions",
"total_count": 318,
"+1": 131,
"-1": 0,
"laugh": 18,
"hooray": 95,
"confused": 0,
"heart": 33,
"rocket": 29,
"eyes": 12
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/218914056",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/218914056/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/218914056/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.87.0",
"id": 218914056,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4NDF0I",
"tag_name": "1.87.0",
"target_commitish": "master",
"name": "Rust 1.87.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-05-15T17:28:13Z",
"updated_at": "2025-05-15T17:28:21Z",
"published_at": "2025-05-15T17:28:21Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.87.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.87.0",
"body": "<a id=\"1.87.0-Language\"></a>\n\n## Language\n\n- [Stabilize `asm_goto` feature](https://github.com/rust-lang/rust/pull/133870)\n- [Allow parsing open beginning ranges (`..EXPR`) after unary operators `!`, `-`, and `*`](https://github.com/rust-lang/rust/pull/134900).\n- [Don't require method impls for methods with `Self: Sized` bounds in `impl`s for unsized types](https://github.com/rust-lang/rust/pull/135480)\n- [Stabilize `feature(precise_capturing_in_traits)` allowing `use<...>` bounds on return position `impl Trait` in `trait`s](https://github.com/rust-lang/rust/pull/138128)\n\n<a id=\"1.87.0-Compiler\"></a>\n\n## Compiler\n\n- [x86: make SSE2 required for i686 targets and use it to pass SIMD types](https://github.com/rust-lang/rust/pull/135408)\n\n<a id=\"1.87.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Remove `i586-pc-windows-msvc` target](https://github.com/rust-lang/rust/pull/137957)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.87.0-Libraries\"></a>\n\n## Libraries\n\n- [Stabilize the anonymous pipe API](https://github.com/rust-lang/rust/issues/127154)\n- [Add support for unbounded left/right shift operations](https://github.com/rust-lang/rust/issues/129375)\n- [Print pointer metadata in `Debug` impl of raw pointers](https://github.com/rust-lang/rust/pull/135080)\n- [`Vec::with_capacity` guarantees it allocates with the amount requested, even if `Vec::capacity` returns a different number.](https://github.com/rust-lang/rust/pull/135933)\n- Most `std::arch` intrinsics which don't take pointer arguments can now be called from safe code if the caller has the appropriate target features already enabled (https://github.com/rust-lang/stdarch/pull/1714, https://github.com/rust-lang/stdarch/pull/1716, https://github.com/rust-lang/stdarch/pull/1717)\n- [Undeprecate `env::home_dir`](https://github.com/rust-lang/rust/pull/137327)\n- [Denote `ControlFlow` as `#[must_use]`](https://github.com/rust-lang/rust/pull/137449)\n- [Macros such as `assert_eq!` and `vec!` now support `const {...}` expressions](https://github.com/rust-lang/rust/pull/138162)\n\n<a id=\"1.87.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`Vec::extract_if`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.extract_if)\n- [`vec::ExtractIf`](https://doc.rust-lang.org/stable/std/vec/struct.ExtractIf.html)\n- [`LinkedList::extract_if`](https://doc.rust-lang.org/stable/std/collections/struct.LinkedList.html#method.extract_if)\n- [`linked_list::ExtractIf`](https://doc.rust-lang.org/stable/std/collections/linked_list/struct.ExtractIf.html)\n- [`<[T]>::split_off`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off)\n- [`<[T]>::split_off_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_mut)\n- [`<[T]>::split_off_first`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_first)\n- [`<[T]>::split_off_first_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_first_mut)\n- [`<[T]>::split_off_last`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_last)\n- [`<[T]>::split_off_last_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_off_last_mut)\n- [`String::extend_from_within`](https://doc.rust-lang.org/stable/alloc/string/struct.String.html#method.extend_from_within)\n- [`os_str::Display`](https://doc.rust-lang.org/stable/std/ffi/os_str/struct.Display.html)\n- [`OsString::display`](https://doc.rust-lang.org/stable/std/ffi/struct.OsString.html#method.display)\n- [`OsStr::display`](https://doc.rust-lang.org/stable/std/ffi/struct.OsStr.html#method.display)\n- [`io::pipe`](https://doc.rust-lang.org/stable/std/io/fn.pipe.html)\n- [`io::PipeReader`](https://doc.rust-lang.org/stable/std/io/struct.PipeReader.html)\n- [`io::PipeWriter`](https://doc.rust-lang.org/stable/std/io/struct.PipeWriter.html)\n- [`impl From<PipeReader> for OwnedHandle`](https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html#impl-From%3CPipeReader%3E-for-OwnedHandle)\n- [`impl From<PipeWriter> for OwnedHandle`](https://doc.rust-lang.org/stable/std/os/windows/io/struct.OwnedHandle.html#impl-From%3CPipeWriter%3E-for-OwnedHandle)\n- [`impl From<PipeReader> for Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html)\n- [`impl From<PipeWriter> for Stdio`](https://doc.rust-lang.org/stable/std/process/struct.Stdio.html#impl-From%3CPipeWriter%3E-for-Stdio)\n- [`impl From<PipeReader> for OwnedFd`](https://doc.rust-lang.org/stable/std/os/fd/struct.OwnedFd.html#impl-From%3CPipeReader%3E-for-OwnedFd)\n- [`impl From<PipeWriter> for OwnedFd`](https://doc.rust-lang.org/stable/std/os/fd/struct.OwnedFd.html#impl-From%3CPipeWriter%3E-for-OwnedFd)\n- [`Box<MaybeUninit<T>>::write`](https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.write)\n- [`impl TryFrom<Vec<u8>> for String`](https://doc.rust-lang.org/stable/std/string/struct.String.html#impl-TryFrom%3CVec%3Cu8%3E%3E-for-String)\n- [`<*const T>::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from_unsigned)\n- [`<*const T>::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.byte_offset_from_unsigned)\n- [`<*mut T>::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.offset_from_unsigned-1)\n- [`<*mut T>::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.byte_offset_from_unsigned-1)\n- [`NonNull::offset_from_unsigned`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.offset_from_unsigned)\n- [`NonNull::byte_offset_from_unsigned`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.byte_offset_from_unsigned)\n- [`<uN>::cast_signed`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.cast_signed)\n- [`NonZero::<uN>::cast_signed`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.cast_signed-5).\n- [`<iN>::cast_unsigned`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.cast_unsigned).\n- [`NonZero::<iN>::cast_unsigned`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.cast_unsigned-5).\n- [`<uN>::is_multiple_of`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.is_multiple_of)\n- [`<uN>::unbounded_shl`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.unbounded_shl)\n- [`<uN>::unbounded_shr`](https://doc.rust-lang.org/stable/std/primitive.usize.html#method.unbounded_shr)\n- [`<iN>::unbounded_shl`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.unbounded_shl)\n- [`<iN>::unbounded_shr`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.unbounded_shr)\n- [`<iN>::midpoint`](https://doc.rust-lang.org/stable/std/primitive.isize.html#method.midpoint)\n- [`<str>::from_utf8`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8)\n- [`<str>::from_utf8_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_mut)\n- [`<str>::from_utf8_unchecked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked)\n- [`<str>::from_utf8_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked_mut)\n\nThese previously stable APIs are now stable in const contexts:\n\n- [`core::str::from_utf8_mut`](https://doc.rust-lang.org/stable/std/str/fn.from_utf8_mut.html)\n- [`<[T]>::copy_from_slice`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.copy_from_slice)\n- [`SocketAddr::set_ip`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.set_ip)\n- [`SocketAddr::set_port`](https://doc.rust-lang.org/stable/std/net/enum.SocketAddr.html#method.set_port),\n- [`SocketAddrV4::set_ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.set_ip)\n- [`SocketAddrV4::set_port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV4.html#method.set_port),\n- [`SocketAddrV6::set_ip`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_ip)\n- [`SocketAddrV6::set_port`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_port)\n- [`SocketAddrV6::set_flowinfo`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_flowinfo)\n- [`SocketAddrV6::set_scope_id`](https://doc.rust-lang.org/stable/std/net/struct.SocketAddrV6.html#method.set_scope_id)\n- [`char::is_digit`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.is_digit)\n- [`char::is_whitespace`](https://doc.rust-lang.org/stable/std/primitive.char.html#method.is_whitespace)\n- [`<[[T; N]]>::as_flattened`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_flattened)\n- [`<[[T; N]]>::as_flattened_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.as_flattened_mut)\n- [`String::into_bytes`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.into_bytes)\n- [`String::as_str`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_str)\n- [`String::capacity`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.capacity)\n- [`String::as_bytes`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_bytes)\n- [`String::len`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.len)\n- [`String::is_empty`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.is_empty)\n- [`String::as_mut_str`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_mut_str)\n- [`String::as_mut_vec`](https://doc.rust-lang.org/stable/std/string/struct.String.html#method.as_mut_vec)\n- [`Vec::as_ptr`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_ptr)\n- [`Vec::as_slice`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_slice)\n- [`Vec::capacity`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.capacity)\n- [`Vec::len`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.len)\n- [`Vec::is_empty`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.is_empty)\n- [`Vec::as_mut_slice`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_mut_slice)\n- [`Vec::as_mut_ptr`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#method.as_mut_ptr)\n\n<a id=\"1.87.0-Cargo\"></a>\n\n## Cargo\n\n- [Add terminal integration via ANSI OSC 9;4 sequences](https://github.com/rust-lang/cargo/pull/14615/)\n- [chore: bump openssl to v3](https://github.com/rust-lang/cargo/pull/15232/)\n- [feat(package): add --exclude-lockfile flag](https://github.com/rust-lang/cargo/pull/15234/)\n\n<a id=\"1.87.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Rust now raises an error for macro invocations inside the `#![crate_name]` attribute](https://github.com/rust-lang/rust/pull/127581)\n- [Unstable fields are now always considered to be inhabited](https://github.com/rust-lang/rust/pull/133889)\n- [Macro arguments of unary operators followed by open beginning ranges may now be matched differently](https://github.com/rust-lang/rust/pull/134900)\n- [Make `Debug` impl of raw pointers print metadata if present](https://github.com/rust-lang/rust/pull/135080)\n- [Warn against function pointers using unsupported ABI strings in dependencies](https://github.com/rust-lang/rust/pull/135767)\n- [Associated types on `dyn` types are no longer deduplicated](https://github.com/rust-lang/rust/pull/136458)\n- [Forbid attributes on `..` inside of struct patterns (`let Struct { #[attribute] .. }) =`](https://github.com/rust-lang/rust/pull/136490)\n- [Make `ptr_cast_add_auto_to_object` lint into hard error](https://github.com/rust-lang/rust/pull/136764)\n- Many `std::arch` intrinsics are now safe to call in some contexts, there may now be new `unused_unsafe` warnings in existing codebases.\n- [Limit `width` and `precision` formatting options to 16 bits on all targets](https://github.com/rust-lang/rust/pull/136932)\n- [Turn order dependent trait objects future incompat warning into a hard error](https://github.com/rust-lang/rust/pull/136968)\n- [Denote `ControlFlow` as `#[must_use]`](https://github.com/rust-lang/rust/pull/137449)\n- [Windows: The standard library no longer links `advapi32`, except on win7.](https://github.com/rust-lang/rust/pull/138233) Code such as C libraries that were relying on this assumption may need to explicitly link advapi32.\n- [Proc macros can no longer observe expanded `cfg(true)` attributes.](https://github.com/rust-lang/rust/pull/138844)\n- [Start changing the internal representation of pasted tokens](https://github.com/rust-lang/rust/pull/124141). Certain invalid declarative macros that were previously accepted in obscure circumstances are now correctly rejected by the compiler. Use of a `tt` fragment specifier can often fix these macros.\n- [Don't allow flattened format\\_args in const.](https://github.com/rust-lang/rust/pull/139624)\n\n<a id=\"1.87.0-Internal-Changes\"></a>\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Update to LLVM 20](https://github.com/rust-lang/rust/pull/135763)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/218914056/reactions",
"total_count": 329,
"+1": 130,
"-1": 0,
"laugh": 19,
"hooray": 64,
"confused": 0,
"heart": 52,
"rocket": 46,
"eyes": 18
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/210050334",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/210050334/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/210050334/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.86.0",
"id": 210050334,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4MhR0e",
"tag_name": "1.86.0",
"target_commitish": "master",
"name": "Rust 1.86.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-04-03T09:42:32Z",
"updated_at": "2025-05-09T00:42:29Z",
"published_at": "2025-04-03T09:42:40Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.86.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.86.0",
"body": "<a id=\"1.86.0-Language\"></a>\n\n## Language\n\n- [Stabilize upcasting trait objects to supertraits.](https://github.com/rust-lang/rust/pull/134367)\n- [Allow safe functions to be marked with the `#[target_feature]` attribute.](https://github.com/rust-lang/rust/pull/134090)\n- [The `missing_abi` lint now warns-by-default.](https://github.com/rust-lang/rust/pull/132397)\n- Rust now lints about double negations, to catch cases that might have intended to be a prefix decrement operator (`--x`) as written in other languages. This was previously a clippy lint, `clippy::double_neg`, and is [now available directly in Rust as `double_negations`.](https://github.com/rust-lang/rust/pull/126604)\n- [More pointers are now detected as definitely not-null based on their alignment in const eval.](https://github.com/rust-lang/rust/pull/133700)\n- [Empty `repr()` attribute applied to invalid items are now correctly rejected.](https://github.com/rust-lang/rust/pull/133925)\n- [Inner attributes `#![test]` and `#![rustfmt::skip]` are no longer accepted in more places than intended.](https://github.com/rust-lang/rust/pull/134276)\n\n<a id=\"1.86.0-Compiler\"></a>\n\n## Compiler\n\n- [Debug-assert that raw pointers are non-null on access.](https://github.com/rust-lang/rust/pull/134424)\n- [Change `-O` to mean `-C opt-level=3` instead of `-C opt-level=2` to match Cargo's defaults.](https://github.com/rust-lang/rust/pull/135439)\n- [Fix emission of `overflowing_literals` under certain macro environments.](https://github.com/rust-lang/rust/pull/136393)\n\n<a id=\"1.86.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Replace `i686-unknown-redox` target with `i586-unknown-redox`.](https://github.com/rust-lang/rust/pull/136698)\n- [Increase baseline CPU of `i686-unknown-hurd-gnu` to Pentium 4.](https://github.com/rust-lang/rust/pull/136700)\n- New tier 3 targets:\n - [`{aarch64-unknown,x86_64-pc}-nto-qnx710_iosock`](https://github.com/rust-lang/rust/pull/133631). For supporting Neutrino QNX 7.1 with `io-socket` network stack.\n - [`{aarch64-unknown,x86_64-pc}-nto-qnx800`](https://github.com/rust-lang/rust/pull/133631). For supporting Neutrino QNX 8.0 (`no_std`-only).\n - [`{x86_64,i686}-win7-windows-gnu`](https://github.com/rust-lang/rust/pull/134609). Intended for backwards compatibility with Windows 7. `{x86_64,i686}-win7-windows-msvc` are the Windows MSVC counterparts that already exist as Tier 3 targets.\n - [`amdgcn-amd-amdhsa`](https://github.com/rust-lang/rust/pull/134740).\n - [`x86_64-pc-cygwin`](https://github.com/rust-lang/rust/pull/134999).\n - [`{mips,mipsel}-mti-none-elf`](https://github.com/rust-lang/rust/pull/135074). Initial bare-metal support.\n - [`m68k-unknown-none-elf`](https://github.com/rust-lang/rust/pull/135085).\n - [`armv7a-nuttx-{eabi,eabihf}`, `aarch64-unknown-nuttx`, and `thumbv7a-nuttx-{eabi,eabihf}`](https://github.com/rust-lang/rust/pull/135757).\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.86.0-Libraries\"></a>\n\n## Libraries\n\n- The type of `FromBytesWithNulError` in `CStr::from_bytes_with_nul(bytes: &[u8]) -> Result<&Self, FromBytesWithNulError>` was [changed from an opaque struct to an enum](https://github.com/rust-lang/rust/pull/134143), allowing users to examine why the conversion failed.\n- [Remove `RustcDecodable` and `RustcEncodable`.](https://github.com/rust-lang/rust/pull/134272)\n- [Deprecate libtest's `--logfile` option.](https://github.com/rust-lang/rust/pull/134283)\n- [On recent versions of Windows, `std::fs::remove_file` will now remove read-only files.](https://github.com/rust-lang/rust/pull/134679)\n\n<a id=\"1.86.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`{float}::next_down`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.next_down)\n- [`{float}::next_up`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.next_up)\n- [`<[_]>::get_disjoint_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.get_disjoint_mut)\n- [`<[_]>::get_disjoint_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.get_disjoint_unchecked_mut)\n- [`slice::GetDisjointMutError`](https://doc.rust-lang.org/stable/std/slice/enum.GetDisjointMutError.html)\n- [`HashMap::get_disjoint_mut`](https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.get_disjoint_mut)\n- [`HashMap::get_disjoint_unchecked_mut`](https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.get_disjoint_unchecked_mut)\n- [`NonZero::count_ones`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.count_ones)\n- [`Vec::pop_if`](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.pop_if)\n- [`sync::Once::wait`](https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.wait)\n- [`sync::Once::wait_force`](https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.wait_force)\n- [`sync::OnceLock::wait`](https://doc.rust-lang.org/stable/std/sync/struct.OnceLock.html#method.wait)\n\nThese APIs are now stable in const contexts:\n\n- [`hint::black_box`](https://doc.rust-lang.org/stable/std/hint/fn.black_box.html)\n- [`io::Cursor::get_mut`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.get_mut)\n- [`io::Cursor::set_position`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.set_position)\n- [`str::is_char_boundary`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.is_char_boundary)\n- [`str::split_at`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at)\n- [`str::split_at_checked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_checked)\n- [`str::split_at_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_mut)\n- [`str::split_at_mut_checked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.split_at_mut_checked)\n\n<a id=\"1.86.0-Cargo\"></a>\n\n## Cargo\n\n- [When merging, replace rather than combine configuration keys that refer to a program path and its arguments.](https://github.com/rust-lang/cargo/pull/15066/)\n- [Error if both `--package` and `--workspace` are passed but the requested package is missing.](https://github.com/rust-lang/cargo/pull/15071/) This was previously silently ignored, which was considered a bug since missing packages should be reported.\n- [Deprecate the token argument in `cargo login` to avoid shell history leaks.](https://github.com/rust-lang/cargo/pull/15057/)\n- [Simplify the implementation of `SourceID` comparisons.](https://github.com/rust-lang/cargo/pull/14980/) This may potentially change behavior if the canonicalized URL compares differently in alternative registries.\n\n<a id=\"1.86.0-Rustdoc\"></a>\n\n## Rustdoc\n\n- [Add a sans-serif font setting.](https://github.com/rust-lang/rust/pull/133636)\n\n<a id=\"1.86.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [The `wasm_c_abi` future compatibility warning is now a hard error.](https://github.com/rust-lang/rust/pull/133951) Users of `wasm-bindgen` should upgrade to at least version 0.2.89, otherwise compilation will fail.\n- [Remove long-deprecated no-op attributes `#![no_start]` and `#![crate_id]`.](https://github.com/rust-lang/rust/pull/134300)\n- [The future incompatibility lint `cenum_impl_drop_cast` has been made into a hard error.](https://github.com/rust-lang/rust/pull/135964) This means it is now an error to cast a field-less enum to an integer if the enum implements `Drop`.\n- [SSE2 is now required for \"i686\" 32-bit x86 hard-float targets; disabling it causes a warning that will become a hard error eventually.](https://github.com/rust-lang/rust/pull/137037) To compile for pre-SSE2 32-bit x86, use a \"i586\" target instead.\n\n<a id=\"1.86.0-Internal-Changes\"></a>\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Build the rustc on AArch64 Linux with ThinLTO + PGO.](https://github.com/rust-lang/rust/pull/133807) The ARM 64-bit compiler (AArch64) on Linux is now optimized with ThinLTO and PGO, similar to the optimizations we have already performed for the x86-64 compiler on Linux. This should make it up to 30% faster.\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/210050334/reactions",
"total_count": 233,
"+1": 96,
"-1": 0,
"laugh": 12,
"hooray": 49,
"confused": 0,
"heart": 31,
"rocket": 33,
"eyes": 12
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/207656382",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/207656382/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/207656382/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.85.1",
"id": 207656382,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4MYJW-",
"tag_name": "1.85.1",
"target_commitish": "master",
"name": "Rust 1.85.1",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-03-18T17:41:29Z",
"updated_at": "2025-03-23T03:09:05Z",
"published_at": "2025-03-23T03:09:05Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.85.1",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.85.1",
"body": "<a id=\"1.85.1\"></a>\n\n- [Fix the doctest-merging feature of the 2024 Edition.](https://github.com/rust-lang/rust/pull/137899/)\n- [Relax some `target_feature` checks when generating docs.](https://github.com/rust-lang/rust/pull/137632/)\n- [Fix errors in `std::fs::rename` on Windows 10, version 1607.](https://github.com/rust-lang/rust/pull/137528/)\n- [Downgrade bootstrap `cc` to fix custom targets.](https://github.com/rust-lang/rust/pull/137460/)\n- [Skip submodule updates when building Rust from a source tarball.](https://github.com/rust-lang/rust/pull/137338/)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/207656382/reactions",
"total_count": 165,
"+1": 75,
"-1": 0,
"laugh": 14,
"hooray": 23,
"confused": 0,
"heart": 23,
"rocket": 18,
"eyes": 12
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/201487521",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/201487521/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/201487521/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.85.0",
"id": 201487521,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4MAnSh",
"tag_name": "1.85.0",
"target_commitish": "master",
"name": "Rust 1.85.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-02-20T17:09:25Z",
"updated_at": "2025-05-09T15:27:49Z",
"published_at": "2025-02-20T17:09:32Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.85.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.85.0",
"body": "<a id=\"1.85.0-Language\"></a>\n\n## Language\n\n- [The 2024 Edition is now stable.](https://github.com/rust-lang/rust/pull/133349) See [the edition guide](https://doc.rust-lang.org/nightly/edition-guide/rust-2024/index.html) for more details.\n- [Stabilize async closures](https://github.com/rust-lang/rust/pull/132706) See [RFC 3668](https://rust-lang.github.io/rfcs/3668-async-closures.html) for more details.\n- [Stabilize `#[diagnostic::do_not_recommend]`](https://github.com/rust-lang/rust/pull/132056)\n- [Add `unpredictable_function_pointer_comparisons` lint to warn against function pointer comparisons](https://github.com/rust-lang/rust/pull/118833)\n- [Lint on combining `#[no_mangle]` and `#[export_name]` attributes.](https://github.com/rust-lang/rust/pull/131558)\n\n<a id=\"1.85.0-Compiler\"></a>\n\n## Compiler\n\n- [The unstable flag `-Zpolymorphize` has been removed](https://github.com/rust-lang/rust/pull/133883), see https://github.com/rust-lang/compiler-team/issues/810 for some background.\n\n<a id=\"1.85.0-Platform-Support\"></a>\n\n## Platform Support\n\n- [Promote `powerpc64le-unknown-linux-musl` to tier 2 with host tools](https://github.com/rust-lang/rust/pull/133801)\n\nRefer to Rust's [platform support page](https://doc.rust-lang.org/rustc/platform-support.html) for more information on Rust's tiered platform support.\n\n<a id=\"1.85.0-Libraries\"></a>\n\n## Libraries\n\n- [Panics in the standard library now have a leading `library/` in their path](https://github.com/rust-lang/rust/pull/132390)\n\n- [`std::env::home_dir()` on Windows now ignores the non-standard `$HOME` environment variable](https://github.com/rust-lang/rust/pull/132515)\n \n It will be un-deprecated in a subsequent release.\n\n- [Add `AsyncFn*` to the prelude in all editions.](https://github.com/rust-lang/rust/pull/132611)\n\n<a id=\"1.85.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`BuildHasherDefault::new`](https://doc.rust-lang.org/stable/std/hash/struct.BuildHasherDefault.html#method.new)\n- [`ptr::fn_addr_eq`](https://doc.rust-lang.org/std/ptr/fn.fn_addr_eq.html)\n- [`io::ErrorKind::QuotaExceeded`](https://doc.rust-lang.org/stable/std/io/enum.ErrorKind.html#variant.QuotaExceeded)\n- [`io::ErrorKind::CrossesDevices`](https://doc.rust-lang.org/stable/std/io/enum.ErrorKind.html#variant.CrossesDevices)\n- [`{float}::midpoint`](https://doc.rust-lang.org/core/primitive.f32.html#method.midpoint)\n- [Unsigned `{integer}::midpoint`](https://doc.rust-lang.org/std/primitive.u64.html#method.midpoint)\n- [`NonZeroU*::midpoint`](https://doc.rust-lang.org/std/num/type.NonZeroU32.html#method.midpoint)\n- [impl `std::iter::Extend` for tuples with arity 1 through 12](https://doc.rust-lang.org/stable/std/iter/trait.Extend.html#impl-Extend%3C\\(A,\\)%3E-for-\\(EA,\\))\n- [`FromIterator<(A, ...)>` for tuples with arity 1 through 12](https://doc.rust-lang.org/stable/std/iter/trait.FromIterator.html#impl-FromIterator%3C\\(EA,\\)%3E-for-\\(A,\\))\n- [`std::task::Waker::noop`](https://doc.rust-lang.org/stable/std/task/struct.Waker.html#method.noop)\n\nThese APIs are now stable in const contexts:\n\n- [`mem::size_of_val`](https://doc.rust-lang.org/stable/std/mem/fn.size_of_val.html)\n- [`mem::align_of_val`](https://doc.rust-lang.org/stable/std/mem/fn.align_of_val.html)\n- [`Layout::for_value`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.for_value)\n- [`Layout::align_to`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.align_to)\n- [`Layout::pad_to_align`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.pad_to_align)\n- [`Layout::extend`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.extend)\n- [`Layout::array`](https://doc.rust-lang.org/stable/std/alloc/struct.Layout.html#method.array)\n- [`std::mem::swap`](https://doc.rust-lang.org/stable/std/mem/fn.swap.html)\n- [`std::ptr::swap`](https://doc.rust-lang.org/stable/std/ptr/fn.swap.html)\n- [`NonNull::new`](https://doc.rust-lang.org/stable/std/ptr/struct.NonNull.html#method.new)\n- [`HashMap::with_hasher`](https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.with_hasher)\n- [`HashSet::with_hasher`](https://doc.rust-lang.org/stable/std/collections/struct.HashSet.html#method.with_hasher)\n- [`BuildHasherDefault::new`](https://doc.rust-lang.org/stable/std/hash/struct.BuildHasherDefault.html#method.new)\n- [`<float>::recip`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.recip)\n- [`<float>::to_degrees`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.to_degrees)\n- [`<float>::to_radians`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.to_radians)\n- [`<float>::max`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.max)\n- [`<float>::min`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.min)\n- [`<float>::clamp`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.clamp)\n- [`<float>::abs`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.abs)\n- [`<float>::signum`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.signum)\n- [`<float>::copysign`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.copysign)\n- [`MaybeUninit::write`](https://doc.rust-lang.org/stable/std/mem/union.MaybeUninit.html#method.write)\n\n<a id=\"1.85.0-Cargo\"></a>\n\n## Cargo\n\n- [Add future-incompatibility warning against keywords in cfgs and add raw-idents](https://github.com/rust-lang/cargo/pull/14671/)\n- [Stabilize higher precedence trailing flags](https://github.com/rust-lang/cargo/pull/14900/)\n- [Pass `CARGO_CFG_FEATURE` to build scripts](https://github.com/rust-lang/cargo/pull/14902/)\n\n<a id=\"1.85.0-Rustdoc\"></a>\n\n## Rustdoc\n\n- [Doc comment on impl blocks shows the first line, even when the impl block is collapsed](https://github.com/rust-lang/rust/pull/132155)\n\n<a id=\"1.85.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [`rustc` no longer treats the `test` cfg as a well known check-cfg](https://github.com/rust-lang/rust/pull/131729), instead it is up to the build systems and users of `--check-cfg`\\[^check-cfg\\] to set it as a well known cfg using `--check-cfg=cfg(test)`.\n \n This is done to enable build systems like Cargo to set it conditionally, as not all source files are suitable for unit tests. [Cargo (for now) unconditionally sets the `test` cfg as a well known cfg](https://github.com/rust-lang/cargo/pull/14963). \\[^check-cfg\\]: https://doc.rust-lang.org/nightly/rustc/check-cfg.html\n\n- [Disable potentially incorrect type inference if there are trivial and non-trivial where-clauses](https://github.com/rust-lang/rust/pull/132325)\n\n- `std::env::home_dir()` has been deprecated for years, because it can give surprising results in some Windows configurations if the `HOME` environment variable is set (which is not the normal configuration on Windows). We had previously avoided changing its behavior, out of concern for compatibility with code depending on this non-standard configuration. Given how long this function has been deprecated, we're now fixing its behavior as a bugfix. A subsequent release will remove the deprecation for this function.\n\n- [Make `core::ffi::c_char` signedness more closely match that of the platform-default `char`](https://github.com/rust-lang/rust/pull/132975)\n \n This changed `c_char` from an `i8` to `u8` or vice versa on many Tier 2 and 3 targets (mostly Arm and RISC-V embedded targets). The new definition may result in compilation failures but fixes compatibility issues with C.\n \n The `libc` crate matches this change as of its 0.2.169 release.\n\n- [When compiling a nested `macro_rules` macro from an external crate, the content of the inner `macro_rules` is now built with the edition of the external crate, not the local crate.](https://github.com/rust-lang/rust/pull/133274)\n\n- [Increase `sparcv9-sun-solaris` and `x86_64-pc-solaris` Solaris baseline to 11.4.](https://github.com/rust-lang/rust/pull/133293)\n\n- [Show `abi_unsupported_vector_types` lint in future breakage reports](https://github.com/rust-lang/rust/pull/133374)\n\n- [Error if multiple super-trait instantiations of `dyn Trait` need associated types to be specified but only one is provided](https://github.com/rust-lang/rust/pull/133392)\n\n- [Change `powerpc64-ibm-aix` default `codemodel` to large](https://github.com/rust-lang/rust/pull/133811)\n\n<a id=\"1.85.0-Internal-Changes\"></a>\n\n## Internal Changes\n\nThese changes do not affect any public interfaces of Rust, but they represent significant improvements to the performance or internals of rustc and related tools.\n\n- [Build `x86_64-unknown-linux-gnu` with LTO for C/C++ code (e.g., `jemalloc`)](https://github.com/rust-lang/rust/pull/134690)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/201487521/reactions",
"total_count": 436,
"+1": 162,
"-1": 0,
"laugh": 26,
"hooray": 110,
"confused": 0,
"heart": 59,
"rocket": 58,
"eyes": 21
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/197695939",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/197695939/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/197695939/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.84.1",
"id": 197695939,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4LyJnD",
"tag_name": "1.84.1",
"target_commitish": "master",
"name": "Rust 1.84.1",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-01-30T18:45:59Z",
"updated_at": "2025-01-31T01:59:23Z",
"published_at": "2025-01-31T01:59:23Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.84.1",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.84.1",
"body": "<a id=\"1.84.1\"></a>\n\n- [Fix ICE 132920 in duplicate-crate diagnostics.](https://github.com/rust-lang/rust/pull/133304/)\n- [Fix errors for overlapping impls in incremental rebuilds.](https://github.com/rust-lang/rust/pull/133828/)\n- [Fix slow compilation related to the next-generation trait solver.](https://github.com/rust-lang/rust/pull/135618/)\n- [Fix debuginfo when LLVM's location discriminator value limit is exceeded.](https://github.com/rust-lang/rust/pull/135643/)\n- Fixes for building Rust from source:\n - [Only try to distribute `llvm-objcopy` if llvm tools are enabled.](https://github.com/rust-lang/rust/pull/134240/)\n - [Add Profile Override for Non-Git Sources.](https://github.com/rust-lang/rust/pull/135433/)\n - [Resolve symlinks of LLVM tool binaries before copying them.](https://github.com/rust-lang/rust/pull/135585/)\n - [Make it possible to use ci-rustc on tarball sources.](https://github.com/rust-lang/rust/pull/135722/)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/197695939/reactions",
"total_count": 176,
"+1": 96,
"-1": 0,
"laugh": 6,
"hooray": 23,
"confused": 0,
"heart": 17,
"rocket": 22,
"eyes": 12
}
},
{
"url": "https://api.github.com/repos/rust-lang/rust/releases/193938042",
"assets_url": "https://api.github.com/repos/rust-lang/rust/releases/193938042/assets",
"upload_url": "https://uploads.github.com/repos/rust-lang/rust/releases/193938042/assets{?name,label}",
"html_url": "https://github.com/rust-lang/rust/releases/tag/1.84.0",
"id": 193938042,
"author": {
"login": "rustbot",
"id": 47979223,
"node_id": "MDQ6VXNlcjQ3OTc5MjIz",
"avatar_url": "https://avatars.githubusercontent.com/u/47979223?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rustbot",
"html_url": "https://github.com/rustbot",
"followers_url": "https://api.github.com/users/rustbot/followers",
"following_url": "https://api.github.com/users/rustbot/following{/other_user}",
"gists_url": "https://api.github.com/users/rustbot/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rustbot/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rustbot/subscriptions",
"organizations_url": "https://api.github.com/users/rustbot/orgs",
"repos_url": "https://api.github.com/users/rustbot/repos",
"events_url": "https://api.github.com/users/rustbot/events{/privacy}",
"received_events_url": "https://api.github.com/users/rustbot/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"node_id": "RE_kwDOAAsO6M4Lj0J6",
"tag_name": "1.84.0",
"target_commitish": "master",
"name": "Rust 1.84.0",
"draft": false,
"immutable": false,
"prerelease": false,
"created_at": "2025-01-09T15:41:49Z",
"updated_at": "2025-02-01T06:03:50Z",
"published_at": "2025-01-09T15:41:56Z",
"assets": [],
"tarball_url": "https://api.github.com/repos/rust-lang/rust/tarball/1.84.0",
"zipball_url": "https://api.github.com/repos/rust-lang/rust/zipball/1.84.0",
"body": "<a id=\"1.84.0-Language\"></a>\n\n## Language\n\n- [Allow `#[deny]` inside `#[forbid]` as a no-op](https://github.com/rust-lang/rust/pull/121560/)\n- [Show a warning when `-Ctarget-feature` is used to toggle features that can lead to unsoundness due to ABI mismatches](https://github.com/rust-lang/rust/pull/129884)\n- [Use the next-generation trait solver in coherence](https://github.com/rust-lang/rust/pull/130654)\n- [Allow coercions to drop the principal of trait objects](https://github.com/rust-lang/rust/pull/131857)\n- [Support `/` as the path separator for `include!()` in all cases on Windows](https://github.com/rust-lang/rust/pull/125205)\n- [Taking a raw ref (`raw (const|mut)`) of a deref of a pointer (`*ptr`) is now safe](https://github.com/rust-lang/rust/pull/129248)\n- [Stabilize s390x inline assembly](https://github.com/rust-lang/rust/pull/131258)\n- [Stabilize Arm64EC inline assembly](https://github.com/rust-lang/rust/pull/131781)\n- [Lint against creating pointers to immediately dropped temporaries](https://github.com/rust-lang/rust/pull/128985)\n- [Execute drop glue when unwinding in an `extern \"C\"` function](https://github.com/rust-lang/rust/pull/129582)\n\n<a id=\"1.84.0-Compiler\"></a>\n\n## Compiler\n\n- [Add `--print host-tuple` flag to print the host target tuple and affirm the \"target tuple\" terminology over \"target triple\"](https://github.com/rust-lang/rust/pull/125579)\n- [Declaring functions with a calling convention not supported on the current target now triggers a hard error](https://github.com/rust-lang/rust/pull/129935)\n- [Set up indirect access to external data for `loongarch64-unknown-linux-{musl,ohos}`](https://github.com/rust-lang/rust/pull/131583)\n- [Enable XRay instrumentation for LoongArch Linux targets](https://github.com/rust-lang/rust/pull/131818)\n- [Extend the `unexpected_cfgs` lint to also warn in external macros](https://github.com/rust-lang/rust/pull/132577)\n- [Stabilize WebAssembly `multivalue`, `reference-types`, and `tail-call` target features](https://github.com/rust-lang/rust/pull/131080)\n- [Added Tier 2 support for the `wasm32v1-none` target](https://github.com/rust-lang/rust/pull/131487)\n\n<a id=\"1.84.0-Libraries\"></a>\n\n## Libraries\n\n- [Implement `From<&mut {slice}>` for `Box/Rc/Arc<{slice}>`](https://github.com/rust-lang/rust/pull/129329)\n- [Move `<float>::copysign`, `<float>::abs`, `<float>::signum` to `core`](https://github.com/rust-lang/rust/pull/131304)\n- [Add `LowerExp` and `UpperExp` implementations to `NonZero`](https://github.com/rust-lang/rust/pull/131377)\n- [Implement `FromStr` for `CString` and `TryFrom<CString>` for `String`](https://github.com/rust-lang/rust/pull/130608)\n- [`std::os::darwin` has been made public](https://github.com/rust-lang/rust/pull/123723)\n\n<a id=\"1.84.0-Stabilized-APIs\"></a>\n\n## Stabilized APIs\n\n- [`Ipv6Addr::is_unique_local`](https://doc.rust-lang.org/stable/core/net/struct.Ipv6Addr.html#method.is_unique_local)\n- [`Ipv6Addr::is_unicast_link_local`](https://doc.rust-lang.org/stable/core/net/struct.Ipv6Addr.html#method.is_unicast_link_local)\n- [`core::ptr::with_exposed_provenance`](https://doc.rust-lang.org/stable/core/ptr/fn.with_exposed_provenance.html)\n- [`core::ptr::with_exposed_provenance_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.with_exposed_provenance_mut.html)\n- [`<ptr>::addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.addr)\n- [`<ptr>::expose_provenance`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.expose_provenance)\n- [`<ptr>::with_addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.with_addr)\n- [`<ptr>::map_addr`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.map_addr)\n- [`<int>::isqrt`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.isqrt)\n- [`<int>::checked_isqrt`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.checked_isqrt)\n- [`<uint>::isqrt`](https://doc.rust-lang.org/stable/core/primitive.u32.html#method.isqrt)\n- [`NonZero::isqrt`](https://doc.rust-lang.org/stable/core/num/struct.NonZero.html#impl-NonZero%3Cu128%3E/method.isqrt)\n- [`core::ptr::without_provenance`](https://doc.rust-lang.org/stable/core/ptr/fn.without_provenance.html)\n- [`core::ptr::without_provenance_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.without_provenance_mut.html)\n- [`core::ptr::dangling`](https://doc.rust-lang.org/stable/core/ptr/fn.dangling.html)\n- [`core::ptr::dangling_mut`](https://doc.rust-lang.org/stable/core/ptr/fn.dangling_mut.html)\n- [`Pin::as_deref_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.as_deref_mut)\n\nThese APIs are now stable in const contexts\n\n- [`AtomicBool::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicBool.html#method.from_ptr)\n- [`AtomicPtr::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicPtr.html#method.from_ptr)\n- [`AtomicU8::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU8.html#method.from_ptr)\n- [`AtomicU16::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU16.html#method.from_ptr)\n- [`AtomicU32::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU32.html#method.from_ptr)\n- [`AtomicU64::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicU64.html#method.from_ptr)\n- [`AtomicUsize::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicUsize.html#method.from_ptr)\n- [`AtomicI8::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI8.html#method.from_ptr)\n- [`AtomicI16::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI16.html#method.from_ptr)\n- [`AtomicI32::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI32.html#method.from_ptr)\n- [`AtomicI64::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicI64.html#method.from_ptr)\n- [`AtomicIsize::from_ptr`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicIsize.html#method.from_ptr)\n- [`<ptr>::is_null`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_null-1)\n- [`<ptr>::as_ref`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.as_ref-1)\n- [`<ptr>::as_mut`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.as_mut)\n- [`Pin::new`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.new)\n- [`Pin::new_unchecked`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.new_unchecked)\n- [`Pin::get_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_ref)\n- [`Pin::into_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.into_ref)\n- [`Pin::get_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_mut)\n- [`Pin::get_unchecked_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.get_unchecked_mut)\n- [`Pin::static_ref`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.static_ref)\n- [`Pin::static_mut`](https://doc.rust-lang.org/stable/core/pin/struct.Pin.html#method.static_mut)\n\n<a id=\"1.84.0-Cargo\"></a>\n\n## Cargo\n\n- [Stabilize MSRV-aware resolver config](https://github.com/rust-lang/cargo/pull/14639/)\n- [Stabilize resolver v3](https://github.com/rust-lang/cargo/pull/14754/)\n\n<a id=\"1.84-Rustdoc\"></a>\n\n## Rustdoc\n\n- [rustdoc-search: improve type-driven search](https://github.com/rust-lang/rust/pull/127589)\n\n<a id=\"1.84.0-Compatibility-Notes\"></a>\n\n## Compatibility Notes\n\n- [Enable by default the `LSX` target feature for LoongArch Linux targets](https://github.com/rust-lang/rust/pull/132140)\n- [The unstable `-Zprofile` flag (“gcov-style” coverage instrumentation) has been removed.](https://github.com/rust-lang/rust/pull/131829) This does not affect the stable flags for coverage instrumentation (`-Cinstrument-coverage`) and profile-guided optimization (`-Cprofile-generate`, `-Cprofile-use`), which are unrelated and remain available.\n- Support for the target named `wasm32-wasi` has been removed as the target is now named `wasm32-wasip1`. This completes the [transition](https://github.com/rust-lang/compiler-team/issues/607) [plan](https://github.com/rust-lang/compiler-team/issues/695) for this target following [the introduction of `wasm32-wasip1`](https://github.com/rust-lang/rust/pull/120468) in Rust 1.78. Compiler warnings on [use of `wasm32-wasi`](https://github.com/rust-lang/rust/pull/126662) introduced in Rust 1.81 are now gone as well as the target is removed.\n- [The syntax `&pin (mut|const) T` is now parsed as a type which in theory could affect macro expansion results in some edge cases](https://github.com/rust-lang/rust/pull/130635#issuecomment-2375462821)\n- [Legacy syntax for calling `std::arch` functions is no longer permitted to declare items or bodies (such as closures, inline consts, or async blocks).](https://github.com/rust-lang/rust/pull/130443#issuecomment-2445678945)\n- [Declaring functions with a calling convention not supported on the current target now triggers a hard error](https://github.com/rust-lang/rust/pull/129935)\n- [The next-generation trait solver is now enabled for coherence, fixing multiple soundness issues](https://github.com/rust-lang/rust/pull/130654)\n",
"reactions": {
"url": "https://api.github.com/repos/rust-lang/rust/releases/193938042/reactions",
"total_count": 320,
"+1": 125,
"-1": 0,
"laugh": 16,
"hooray": 70,
"confused": 0,
"heart": 47,
"rocket": 45,
"eyes": 17
}
}
]