Nicholas Bishop
Nicholas Bishop
I used `cargo bisect-rustc` to find where this regressed: https://github.com/rust-lang/rust/commit/ceeb5ade201e4181c6d5df2ba96ae5fb2193aadc There is already a revert PR for that change here: https://github.com/rust-lang/rust/pull/99674 So hopefully this issue will be resolved once the...
Seems to be fixed in latest nightly due to https://github.com/rust-lang/rust/pull/99676.
Thanks for the info. I'll be sure to give the test another run once prost is updated.
Could you clarify what the "two traits" are?
Would it be possible to update the [1.25.0 blog post](https://blog.rust-lang.org/2022/07/11/Rustup-1.25.0.html) with this info? It's reasonably straightforward to work around with [`Command::env_remove`](https://doc.rust-lang.org/std/process/struct.Command.html#method.env_remove), but it's a little tricky to figure out that...
It's actually a bit trickier to fix this on Windows, because there the `PATH` variable must be edited as well to remove the entry that looks like `C:\Users\someuser\.rustup\toolchains\stable-x86_64-pc-windows-msvc\bin`. Here's roughly...
Thanks, since it sounds like the Windows thing is a separate problem I've filed a new bug for it: https://github.com/rust-lang/rustup/issues/3036
Sure thing. What's the recommended way to install an older version of rustup?
Thanks. Here's what it looks like in 1.24.3: ```console $ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.01s Running `target\debug\rustup-nested-bug-repro.exe` RUSTUP_TOOLCHAIN: "stable-x86_64-pc-windows-msvc" Original PATH: "C:\\Users\\nicholasbishop\\src\\rustup-nested-bug-repro\\target\\debug\\deps;C:\\Users\\nicholasbishop\\src\\rustup-nested-bug-repro\\target\\debug;C:\\Users\\nicholasbishop\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\x86_64-pc-windows-msvc\\lib;C:\\Users\\nicholasbishop\\.cargo\\bin;C:\\Users\\nicholasbishop\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\bin;C:\\Users\\nicholasbishop\\AppData\\Local\\Programs\\Python\\Python310\\;C:\\Users\\nicholasbishop\\bin;C:\\Program Files\\Git\\mingw64\\bin;C:\\Program Files\\Git\\usr\\local\\bin;C:\\Program Files\\Git\\usr\\bin;C:\\Program...
I admit IDE support is something of a blind spot for me. Just as a matter of personal preference I don't use rust analyzer or anything like that, so it...