Skip to content

Commit 2336e3e

Browse files
committed
[WIP] Support rustls as an alternative TLS backend
1 parent 4debdf3 commit 2336e3e

File tree

24 files changed

+385
-187
lines changed

24 files changed

+385
-187
lines changed

.github/workflows/sqlx.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-20.04
3333
strategy:
3434
matrix:
35-
runtime: [async-std, tokio, actix]
35+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
3636
steps:
3737
- uses: actions/checkout@v2
3838

@@ -144,7 +144,7 @@ jobs:
144144
runs-on: ubuntu-20.04
145145
strategy:
146146
matrix:
147-
runtime: [async-std, tokio, actix]
147+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
148148
needs: check
149149
steps:
150150
- uses: actions/checkout@v2
@@ -180,7 +180,7 @@ jobs:
180180
strategy:
181181
matrix:
182182
postgres: [12, 10, 9_6, 9_5]
183-
runtime: [async-std, tokio, actix]
183+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
184184
needs: check
185185
steps:
186186
- uses: actions/checkout@v2
@@ -232,7 +232,7 @@ jobs:
232232
strategy:
233233
matrix:
234234
mysql: [8, 5_7, 5_6]
235-
runtime: [async-std, tokio, actix]
235+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
236236
needs: check
237237
steps:
238238
- uses: actions/checkout@v2
@@ -275,7 +275,7 @@ jobs:
275275
strategy:
276276
matrix:
277277
mariadb: [10_5, 10_4, 10_3, 10_2, 10_1]
278-
runtime: [async-std, tokio, actix]
278+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
279279
needs: check
280280
steps:
281281
- uses: actions/checkout@v2
@@ -319,7 +319,7 @@ jobs:
319319
strategy:
320320
matrix:
321321
mssql: [2019]
322-
runtime: [async-std, tokio, actix]
322+
runtime: [async-std-native-tls, tokio-native-tls, actix-native-tls]
323323
needs: check
324324
steps:
325325
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)