-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #158: chore: Enforce min
rustls
version to 0.23.19
ed0cdae chore: bump version to 0.22.1, update CHANGELOG (Steve Myers) 7ef3ff6 chore: Enforce min `rustls` version to 0.23.19 (志宇) Pull request description: `rustls` versions 0.23.18 and 0.23.19 contains fix for vulnerability RUSTSEC-2024-0399. However, 0.23.18 bumps MSRV to 1.71. 0.23.19 reverts MSRV back to 1.63. We enforce min `rustls` version to 0.23.19 to make it easier to compile on MSRV and ensure we include the RUSTSEC-2024-0399 fix. Note that in CI, I decided to pin `rustls` dependency to 0.23.19 explicitly. This is because in future versions of `rustls`, the MSRV will be changed to 1.71. Context: rustls/rustls#2244 ACKs for top commit: notmandatory: ACK ed0cdae Tree-SHA512: 9b6319d520a1002b3404743f051019a5ff63f53a9fe37ed080ed8e761f3db3edd446d014d2145e9c098279d7b3e6e017e82dd633baeef202a904afb37c49c4d9
- Loading branch information
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "electrum-client" | ||
version = "0.22.0" | ||
version = "0.22.1" | ||
authors = ["Alekos Filini <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://github.com/bitcoindevkit/rust-electrum-client" | ||
|
@@ -26,7 +26,7 @@ serde_json = { version = "^1.0" } | |
|
||
# Optional dependencies | ||
openssl = { version = "0.10", optional = true } | ||
rustls = { version = "0.23", optional = true, default-features = false } | ||
rustls = { version = "0.23.19", optional = true, default-features = false } | ||
webpki-roots = { version = "0.25", optional = true } | ||
|
||
byteorder = { version = "1.0", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters