-
A real doozy of an issue here. I honestly don't know if this is a rust_tracy_client problem, a backtrace-rs problem, or a tracy problem, I'm starting here as a first line of action.
Clone this repo…
-
I am using `Prusti version: 0.2.2, commit 528f4c2 2024-03-06 10:13:12 UTC, built on 2024-03-06 10:25:48 UTC`
```rs
use prusti_contracts::*;
struct Token {
_p: std::marker::PhantomData
}
…
-
### Code
```Rust
#![feature(generic_const_exprs)]
trait NodeIndex: Copy {}
struct Interface,
}
trait Component: 'static {
type NodeIndex: NodeIndex;
fn exec(&mut self, nodes: Int…
-
See also https://github.com/rust-lang/rust/issues/116179:
> When a scoped thread is **_implicitly_** joined, the destructors of thread-local variables are not guaranteed to have completed when the …
-
Would be nice, if meson supported Profile-Guided Optimization with `rustc` as rust itself [supports it](https://doc.rust-lang.org/rustc/profile-guided-optimization.html)
Current outcome: `ERROR: ru…
okias updated
4 months ago
-
auto-reduced (treereduce-rust):
````rust
#![feature(generic_const_exprs, generic_arg_infer)]
use core::mem::MaybeUninit;
pub struct Arr {
v: [MaybeUninit; N],
}
impl Arr {
co…
-
Running `cargo msrv check` from a github workflow (aka github action) on the `windows-latest` image results in the following error message:
> error: could not create link from 'C:\\Users\\runneradm…
-
I am trying to compile a Rust project to `x86_64-unknown-linux-musl` from a `x86_64-unknown-linux-gnu` host (NixOS 24.05).
`pkgs` is defined as follows:
```nix
pkgs = nixpkgs.legacyPackages.x86_6…
-
From https://github.com/Rust-for-Linux/linux/pull/402#discussion_r660849490:
> You can give the name of specific crates (separated with spaces I think). Rustc will then only allow unstable features…
-
### Summary
`missing_panics_doc` does not trigger on indexing, which could panic. `.get(...).unwrap()` is equivalent and does get caught.
### Lint Name
missing_panics_doc
### Reproducer
…