Skip to content

Commit 2e605e1

Browse files
committed
chore: Enforce min rustls version to 0.23.19
`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.
1 parent f00b999 commit 2e605e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ serde_json = { version = "^1.0" }
2626

2727
# Optional dependencies
2828
openssl = { version = "0.10", optional = true }
29-
rustls = { version = "0.23", optional = true, default-features = false }
29+
rustls = { version = "0.23.19", optional = true, default-features = false }
3030
webpki-roots = { version = "0.25", optional = true }
3131

3232
byteorder = { version = "1.0", optional = true }

0 commit comments

Comments
 (0)