-
Notifications
You must be signed in to change notification settings - Fork 39
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
1.63 msrv #115
1.63 msrv #115
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "payjoin-cli" | ||
version = "0.0.1" | ||
authors = ["Dan Gould <[email protected]>", "Martin Habovstiak <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/payjoin/rust-payjoin" | ||
readme = "README.md" | ||
edition = "2021" | ||
resolver = "2" | ||
Comment on lines
+5
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jbesraa May you please share why this is necessary to introduce this change? I'm not so familiar with this part of the build process There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. resolver = "2" is a flag to add latest deps resolution features. But I actually dont think we need it because we have edition = "2021" and in this edition the default resolver is =2. https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2 |
||
|
||
[[bin]] | ||
name = "payjoin" | ||
|
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.
I believe this is default behavior. Any reason to be explicit like it wasn't being picked up or incorrectly picking up payjoin/README.md?