-
Notifications
You must be signed in to change notification settings - Fork 83
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
fix(aries-vcx): fixed dependency listing in README for Cargo.toml
#924
Conversation
hi @arminveres thanks for the fix! By Hyperledger policy, all commits must be signed off (DCO) - which basically every commit message must contain following bottom line (example):
there's a switch in
and then push force the branch. Thank you! |
@arminveres by the way, what we should probably also mention in the readme, it's highly recommended to fix the revision of the dependency, so you are not simply fetching the latest |
Thanks @Patrik-Stas, I amended the commit and included a version tag. Should I be more verbose about it? |
@arminveres thanks for prompt DCO fix, but note that the example is currently not quite valid.
|
Using path does not work as crates from git sources need be specified through `git=...` attribute. Also add a `tag` to specify version. Signed-off-by: Armin Veres <armin.veres@hotmail.com>
I see, you are right, it built on my system, but it ignored the version tag and proceeded to use the latest tag available, so I didn't notice it. I adjusted the commit. Thanks! |
Codecov Report
@@ Coverage Diff @@
## main #924 +/- ##
=======================================
Coverage 43.33% 43.34%
=======================================
Files 438 438
Lines 34847 34847
Branches 7609 7609
=======================================
+ Hits 15101 15103 +2
+ Misses 15263 15260 -3
- Partials 4483 4484 +1
Flags with carried forward coverage won't be shown. Click here to find out more. |
Thanks @arminveres, looks good, merging. By the way, I am curious to ask, are you looking to build some using |
Thanks! |
Using path does not work and crates from git sources need be specified through
git=...
.