-
Notifications
You must be signed in to change notification settings - Fork 126
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
Reduce the number of dependencies #139
Comments
Hey @jonhoo I tried building the project locally without each one of the non dev deps but the project would only build with all of them. What is the path you were thinking for this? |
When I try to
|
Ah, sorry, to be clear, it's not as though we currently list unused dependencies, but rather I would like to see us re-write parts of the code so that we can remove dependencies. I'm not sure what the issue you are pointing to with |
I think we should be able to remove #133 and #134 added to our collapsers the ability to fix partially demangled Rust symbols with no external dependencies. I originally implemented #132 to work around the same problem, but it required you to pass What do you think? |
Now we're down to 109 dependencies after #144. $ cargo tree --no-indent | sed 's/ (\*)//' | sort -u | wc -l
109 |
My guess is that some of these are unnecessary. Let's see if we can't do something to help improve build times.
The text was updated successfully, but these errors were encountered: