rustdoc
rustdoc copied to clipboard
Source tests could reuse analysis data
If the tests haven't changed, we could save some work by not regenerating the analysis data.
Hmmm... cargo runs tests in parallel so it might be a bit harder to cache data, but this would be a good improvement.
I don't think the parallelism would be a problem because the analysis data is per-test.
Ah I misunderstood how it worked. Thanks for clearing that up