Skip to content

Commit 71c3443

Browse files
committed
fix: pin native-tls to <= 0.2.13
[native-tls 0.2.14 bumped their MSRV from 1.53.0 to 1.80.0](sfackler/rust-native-tls@v0.2.12...v0.2.14), which we don't support. Since tokio-native-tls has dependency to native-tls = "0.2", is causing the tests to break. This pins the `native-tls` to `<= 0.2.13`.
1 parent 84461ce commit 71c3443

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ actix-web = "4.2.1"
163163
# We have a few deps that have MSRVs that are higher than our own.
164164
# We pin them here to ensure that we can run tests on the MSRV
165165
bumpalo = ">=3.0.0, <= 3.15.0"
166+
native-tls = ">= 0.2.0, <= 0.2.13"
166167

167168
[[example]]
168169
name = "checkout"

0 commit comments

Comments
 (0)