-
I'm pretty excited about this version bump as Rust 1.79 stabilized the inline `const` expressions. Thanks for the efforts!
However, my existing codebase breaks at a field-less enum declaration:
…
y1ca1 updated
2 weeks ago
-
Closures can have fields that are reference-typed, and then when closures are passed around by-value, those fields behave like struct fields for the aliasing model, so they get retagged and protected.…
-
**Version**
`prost@0.13.2`, `prost-build@0.13.2`
**Description**
`prost_config::Config::boxed` generates code doesn't compile. I tried this code:
`boxed_tests.proto`:
```protobuf
syntax = "p…
ldm0 updated
2 months ago
-
In latest Rust nightly we can allocate with custom allocator (for example https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html#method.new_in).
It will be great for bumpalo-herd to provide th…
-
Doxygen seems to be commonly used in C/C++ projects, and its annotations look pretty messy in Rustdoc.
`bindgen` chose to offload processing of Doxygen annotations to `doxygen-rs`. The problem is tha…
-
This is a tracking issue for making and stabilizing `type_name` as `const fn`. It is not clear whether this is sound. Needs some T-lang discussion probably, too.
Steps needed:
* [x] Implementati…
-
### Problem
I'm getting a linking failure on the following program on an Ubuntu 20.04 with x86_64:
```rust
#![feature(f16)]
fn main() {
let _f = (256u128 + 0) as f16;
}
```
```bash
$ cargo +nig…
-
Previously: https://github.com/rust-diplomat/diplomat/issues/657 (talking about the specific issue we found)
As explained in https://github.com/rust-lang/rust/issues/129486, the Rust Wasm ABI is cu…
-
Given the following code — [playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=99170e90a169ee5156ab147c918a7956):
```rust
struct A src/main.rs:9:5
|
9 | u…
-
This issue tracks the release notes text for #131477.
### Steps
- [ ] Proposed text is drafted by PR author (or team) making the noteworthy change.
- [ ] Issue is nominated for release team review …