-
Notifications
You must be signed in to change notification settings - Fork 26
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
chore(sidecar): rm unused dependencies #753
Conversation
📚
|
// Manually silence "rustls" crate being unused | ||
#[allow(unused_extern_crates)] | ||
extern crate rustls; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because rustls isn't used in the lib/ code, so the "unused crate" warning is triggered, but we do use it in bin/sidecar.rs, which isn't checked by this particular rule.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, related to #706
5e71ea3
to
fd04dd7
Compare
We had some unused dependencies in bolt_sidecar.
Added a library attribute to warn us in the future.
Dependencies removed: