Alex Kladov
Alex Kladov
I didn't read this past the first paragraph (I hope to do so, once I have more time), but I'd advise against using lsp-types as a dependency, even an optional...
AssertUnwindSafe and ManuallyDrop examples convince me that the current guideline as stated is clearly wrong/misleading, and that we need to do something about this.
Using rust-analyzer for semverver would give you a nice prototype, but woun't scale to production readiness, for two reasons: * rust-analyzer isn't precise enough for that (it has false errors...
@infinity0 Clarification question: am I correct that `cargo install` currently avoids dev dependencies even if the flag is not specified? That is, this issue is specifically for `cargo build` command?
I think it is important that we have both of these features: * ability to override "scratch space" dir for intermediate build artifacts * ability to override the place where...
Oh wow, I think there's a very confusing point here, which we somehow didn't noticed before. `OUT_DIR` and `--out-dir` are different and unrelated. They just happen to share the same...
Coming back to this after a couple of years, I feel that maybe adding `--out-dir` is indeed premature, and a brainstorm of "layout of `./target` dir" is required before that....
I *think* this also has a chance of speeding up some dev workflows around switching branches. Specifically, I often check out branches temporary to look at the PRs (without building...
@alexcrichton I think that depends on the CI setup. It seems to me that long-term the CI job with `--minimal-versions` should also use the minimal supported Rust version(MSRV): this is...
Excellent idea @Eh2406!