Results 439 comments of Nemo157

Some stats from the last week: The orange line is 15 minutes, the red line is 30 minutes. We did have the 99th percentile exceed 30 minutes briefly, but I...

I don't remember what I was thinking back then, but right now I think we should ignore `default` in both counts, so this would be "6 feature flags, 1 enabled...

You can set which platforms you want the docs built for, and which is the default to show: https://docs.rs/about/metadata. If it's easy to detect empty docs it may make sense...

> the problematic limit is on invalidation-requests, not on paths. I think it's number of paths, for the non-wildcard ones they say > If you’re invalidating files individually, you can...

You can't set `OUT_DIR`'s to read-only, build scripts can rerun and cargo doesn't clean the `OUT_DIR` between them. I've had issues before when I set files within `~/.cargo/src/` to read-only...

The actual code change to support this is one line in `libtest`, padded out to support being unstable in the linked implementation. It's not the only situation I've encountered this...

Yeah, that was the alternative I put in which I think is the _better_ solution for this particular example. I still feel that the ability to skip tests via an...

I recently wrote some code that would have benefited from this API (and I'm pretty sure I've looked for it in the past too): ```rust let mut messages = messages.into_iter();...

I have just taken a quick look at #5, for some reason it's not compiling at the moment. It looks ok, but I have no experience with `lalrpop` and really...

> As best I can understand you're saying that it's important to you that we support a nightly toolchain without unstable features, is that correct? I wasn't aware of that...