Jake Goulding

Results 615 comments of Jake Goulding

> when there is no workspace defined I'd expect the environment variable to not be set at all in that case.

Add me to the pile. I have the same case as @bluss - wanting to have quickcheck tests. I also am replacing a crate that uses C code with pure...

I might be in the minority, but I’d also be interested in knowing if my crates ever fail any “candidate” run. I understand that this could have noise, but I...

Add one more request to the pile. I have almost the same usecase — reading a data file which contains a header which determines if the subsequent data is little-...

Those are stable methods. - [`i32::to_be`](https://doc.rust-lang.org/std/primitive.i32.html#method.to_be) - [`i32::to_le`](https://doc.rust-lang.org/std/primitive.i32.html#method.to_le) - [`i32::from_be`](https://doc.rust-lang.org/std/primitive.i32.html#method.from_be) - [`i32::from_le`](https://doc.rust-lang.org/std/primitive.i32.html#method.from_le)

This [appears to be a deliberate change](https://github.com/s-panferov/awesome-typescript-loader/commit/f14eaab7ff9641a125a15eb5aba955bf4e5cb6fb), but it's certainly a surprising one...

I *might* have found a workaround, at least one that works in my case. Evidently, when I generated **tsconfig.json**, I never changed the `include` key from the default of `"./src/**/*"`...

As I understand it, Cargo spins up a job server (I hope Makefile-compatible) that it uses to coordinate the parallel invocations of the compiler and the threads that each compiler...

Today's Cargo does this *somehow*, as you can see in the progress bar it shows when compiling many crates in parallel.

> I think grouping the direct dependencies at the top and separating the transitive one would be clearer than using colours with a a-z ordering Perhaps a sort by depth...