Sergey "Shnatsel" Davidoff

Results 943 comments of Sergey "Shnatsel" Davidoff

I don't think it's a good idea to include it in the index, actually. This info is not needed for most uses - that's why it's not in the index!...

If we choose to use a granular cache, it makes sense to store it on-disk in JSON since it's basically a map and we already have a dependency on `serde-json`...

https://crates.io/crates/structsy sounds like a better way to store data on disk than JSON files.

Specifically, we need to understand: 1. Does anyone actually use those SBOM formats? 2. Are any of those formats a good fit for storing our data - perhaps we won't...

I trust you that the usability issue is real, but I don't see how I can improve on this. This is currently documented in both the help text (see `--help`),...

It is a well-known fact in UX design that people click through any prompts and warnings, especially on Windows, so the interfaces have evolved to avoid the need for warnings...

The part of the dump we need seems to only require a 50Mb download, which is not too bad.

Yeah, looks like sccache compiler detection just doesn't work with `RUSTC_WORKSPACE_WRAPPER`. It fails to realize that we're invoking `rustc`, and complains about an unsupported compiler. Looks like it will need...

I've reported the issue to sccache: https://github.com/mozilla/sccache/issues/1274

A PR fixing this in sccache is up: https://github.com/mozilla/sccache/pull/1280