You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Low-priority successor to #387 which should wait for #140 to be addressed first. Currently our full crate graph contains several different copies of the same dependency, due to some of our dependencies requiring incompatible versions. We can see these by running git grep "name =" Cargo.lock | uniq -c | grep -v "1 Cargo.lock" | sort -r, which as of today gives me:
This could be partially addressed by pruning unnecessary dependencies from our crate graph (which is why this ought to wait for #140 first), but ultimately this might require manually patching dependencies who are slow to update.
The text was updated successfully, but these errors were encountered:
So we did manage to get rid of 7 duplicated dependencies. I'm not entirely satisfied, but this is such a low priority for now (especially since now we have a good understanding of where in the pipeline our compilation time problems are, and are unrelated to duplicated dependencies) that I don't think it's useful to keep this open as a separate issue from #140 (which I still would like to do one day, after 1.0).
Low-priority successor to #387 which should wait for #140 to be addressed first. Currently our full crate graph contains several different copies of the same dependency, due to some of our dependencies requiring incompatible versions. We can see these by running
git grep "name =" Cargo.lock | uniq -c | grep -v "1 Cargo.lock" | sort -r
, which as of today gives me:This could be partially addressed by pruning unnecessary dependencies from our crate graph (which is why this ought to wait for #140 first), but ultimately this might require manually patching dependencies who are slow to update.
The text was updated successfully, but these errors were encountered: