-
Notifications
You must be signed in to change notification settings - Fork 993
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependency Reduction? #2861
Comments
These two are probably only relevant if wanting to remove dependency count rather than size:
|
Smallvec is a much more complicated bit of kit - it has non-zero overhead over a Vec/ArrayVec, so it's a specialized tool that we need in certain situations. |
I double checked wgpu's tree and it seems besides #3502 there aren't other opportunities to remove other dependencies. I think we can close this for now. |
I was looking at cargo tree and wondering if there's places for improvement in reducing dependencies. I came up with the following things:
I don't know if all of these are a good idea, but I'd be willing to work on any of them.
The text was updated successfully, but these errors were encountered: