@@ -134,14 +134,14 @@ For the previous stable release, 0.6.3, see [the previous version of this docume
134
134
# tokio (no TLS)
135
135
sqlx = { version = " 0.7" , features = [ " runtime-tokio" ] }
136
136
# tokio + native-tls
137
- sqlx = { version = " 0.7" , features = [ " runtime-tokio" , " tls-native" ] }
137
+ sqlx = { version = " 0.7" , features = [ " runtime-tokio" , " tls-native-tls " ] }
138
138
# tokio + rustls
139
139
sqlx = { version = " 0.7" , features = [ " runtime-tokio" , " tls-rustls" ] }
140
140
141
141
# async-std (no TLS)
142
142
sqlx = { version = " 0.7" , features = [ " runtime-async-std" ] }
143
143
# async-std + native-tls
144
- sqlx = { version = " 0.7" , features = [ " runtime-async-std" , " tls-native" ] }
144
+ sqlx = { version = " 0.7" , features = [ " runtime-async-std" , " tls-native-tls " ] }
145
145
# async-std + rustls
146
146
sqlx = { version = " 0.7" , features = [ " runtime-async-std" , " tls-rustls" ] }
147
147
```
@@ -168,7 +168,7 @@ be removed in the future.
168
168
169
169
- Actix-web is fully compatible with Tokio and so a separate runtime feature is no longer needed.
170
170
171
- - ` tls-native ` : Use the ` native-tls ` TLS backend (OpenSSL on * nix, SChannel on Windows, Secure Transport on macOS).
171
+ - ` tls-native-tls ` : Use the ` native-tls ` TLS backend (OpenSSL on * nix, SChannel on Windows, Secure Transport on macOS).
172
172
173
173
- ` tls-rustls ` : Use the ` rustls ` TLS backend (cross-platform backend, only supports TLS 1.2 and 1.3).
174
174
0 commit comments