-
Notifications
You must be signed in to change notification settings - Fork 373
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
remove unnecessary dependencies #1711
remove unnecessary dependencies #1711
Conversation
Hi, and thanks for your PR! It is very easy to forget to remove a crate once the code relying on it is gone, and I think that's what have happened here. In the cases where something else is going on we should have a clarifying comment about it. |
I completely agree. It does not change much in the sense that it is pulled indirectly. However it is cleaner. I see more such unused dependencies over the entire set of crates. |
Feel free to clean up further! |
I removed more dependencies. Seems like this is it! |
Nice! Are you using |
I use |
@emilk I will be on a break until the end of the week. You can decide what the next steps are with this PR! |
I think you need to update the Cargo.lock file, e.g. with |
Yep yep, I see I missed that! |
Thank you! |
Hello,
I came across some unnecessary dependencies in each crate. These dependencies are however used in other crates (or) indirectly pulled into the crate.
In this PR, I used re_viewer, as an example, to show the unnecessary dependencies. I am wondering if there is a reason why these dependencies are kept as it is. Based on your thoughts, we can see how to proceed with the other crates.