-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Resolver 1.x #7747
Resolver 1.x #7747
Conversation
The commit is still not signed 😅 |
warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"` note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
1649a81
to
838de10
Compare
@amrbashir sorry to give you grief .. It seems I am all fingers and thumbs ... when contributing to a project new to me. when I run git log --show-signature -- it now looks ok commit 838de10 (HEAD -> resolver_1px, me/resolver_1px)
|
That is a ssh key I have had posted on the site for more than 5 years Looking to see what is different rather than just plain wrong...I am signing with SSH where as every other commit to the code base is signed with a GPG key I see that GPG is better than ssh in that it can be revoked So I am going to setup a GPG key one sec..
|
I also use my ssh key on one of my machines for commit signing. One weird gatcha is that you have to add the key to github twice, as an authentication key and as a signing key. Being able to use it as a signing key is a relatively new feature so if you didn't update it for 5 years github probably doesn't recognize it as a signing key yet. |
@FabianLars thank you very much for the advice ... in the end I created a new PR which I can see has the verified badge. ( #7753) I dropped the SSH approach and followed the GPG key tutorials |
This PR resolves a warning seen while running cargo update
warning: some crates are on edition 2021 which defaults to
resolver = "2"
, but virtual workspaces default toresolver = "1"
note: to keep the current resolver, specify
workspace.resolver = "1"
in the workspace root's manifestnote: to use the edition 2021 resolver, specify
workspace.resolver = "2"
in the workspace root's manifest