-
Notifications
You must be signed in to change notification settings - Fork 197
Remove unused dependencies #2111
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
Conversation
cairo1-run/Cargo.toml
Outdated
[features] | ||
default = ["with_mimalloc"] | ||
with_mimalloc = ["dep:mimalloc"] | ||
with_mimalloc = [] |
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.
Is this feature necessary? As far as I understand, it is not being used in cairo1-run
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.
Agree, I think it's not used and it would be safe to remove it
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.
Done! f50aaa3
|
Benchmark Results for unmodified programs 🚀
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2111 +/- ##
=======================================
Coverage 96.67% 96.67%
=======================================
Files 103 103
Lines 43597 43597
=======================================
Hits 42147 42147
Misses 1450 1450 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This reverts commit 4919373. This is done because the dependency is indeed necessary.
I would remove the |
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.
LGTM
Remove unused dependencies
Description
cargo-udeps
andcargo-machete
were used to check which were the unused dependencies. The following were removed:Fixes #2109
Checklist