-
Notifications
You must be signed in to change notification settings - Fork 11
Update dependencies #21
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| [package] | ||
| name = "hdwallet" | ||
| version = "0.4.1" | ||
| version = "0.4.2" | ||
| authors = ["jjy <jjyruby@gmail.com>"] | ||
| edition = "2021" | ||
| license = "MIT" | ||
|
|
@@ -15,14 +15,14 @@ members = [ | |
| ] | ||
|
|
||
| [dependencies] | ||
| secp256k1 = "0.26" | ||
| secp256k1 = "0.28.0" | ||
| rand_core = "0.6.4" | ||
| ring = "0.16" | ||
| ring = "0.17.5" | ||
| lazy_static = "1.4" | ||
| thiserror = "1.0.38" | ||
| thiserror = "1.0.50" | ||
|
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. Why is this being bumped? is there a need to pin this crate to this new minimum version of |
||
|
|
||
| [dev-dependencies] | ||
| hex = "0.4" | ||
| base58 = "0.1" | ||
| ripemd160 = "0.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. |
||
| rand = "0.8.3" | ||
| hex = "0.4.3" | ||
|
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. Why is this being bumped? Is there a need to pin this crate to this specific minimum version of |
||
| base58 = "0.2.0" | ||
| ripemd160 = "0.10.0" | ||
| rand = "0.8.5" | ||
|
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. Why is this being bumped? Is there a need to pin this crate to this specific minimum version of |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.63.0 | ||
| 1.73.0 |
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.
ringis only used for SHA-256 and HMAC. If instead thesha2andhmaccrates were used, theringdependency could be dropped.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 note that this is precisely what the
bip32crate does, so perhaps users that don't want theringdependency should usebip32instead.