- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 66
git2: Disable default features #37
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
Can you instead build with Or in your Cargo.toml |
Yeah I created a new bin project, added vergen as I described above, and
|
unfortunately I specifically need the SHA of the commit for Sentry integration and other things, so disabling the git feature won't work. |
c29b967
to
51f72df
Compare
Codecov Report
@@ Coverage Diff @@
## master #37 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 11 11
Lines 492 492
=========================================
Hits 492 492 Continue to review full report at Codecov.
|
Ok, I see. You still need the git feature. This will also fix #41. |
This fixes #36 by disabling the
git2
features that rely onopenssl-sys
, since it looks like we're not actually using any of them in this crate :)