-
Notifications
You must be signed in to change notification settings - Fork 50
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
Bump dependencies #575
base: main
Are you sure you want to change the base?
Bump dependencies #575
Conversation
@@ -14,7 +14,7 @@ bench = [] | |||
|
|||
[dependencies] | |||
uuid = { version = "1", features = ["v4", "serde"], optional = true } | |||
bitcoin = { version = "0.32.2", features = [ | |||
bitcoin = { version = "0.32.5", features = [ |
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.
cargo will automatically pull in the latest patch version so we do not want to raise this as it should be the minimum version we support. This is true for a few of the ones updated, just going to note it here.
sync_wrapper = "1" | ||
bech32 = "0.11" |
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.
These are not direct deps of ours but transitive dependencies that do not have the minimal version defined correctly so they need to be defined here. So we cant change to a new major or minor version as we want to set the correct major/minor version for the dep.
I haven't run the minimal check in a bit so I should redo it and add to CI and maybe we will be able to update or remove these if your direct dep has been updated. #505
Description
This PR bumps a few core dependencies to the latest (MSRV-compatible) version.
Checklist
just final-check
before committing