You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,13 @@ for the most common use cases. The following features are available.
72
72
73
73
-`tokio_io`*(enabled by default)* — I/O based on [Tokio](https://tokio.rs/).
74
74
-`async_std` — I/O based on [async-std](https://async.rs/) (doesn't work together with `tokio_io`).
75
-
-`tls` — TLS support (allowed only with `tokio_io`).
75
+
-`tls` — TLS support (allowed only with `tokio_io` and one of TLS libraries, under `tls-rustls` or `tls-native-tls` features).
76
+
77
+
### TLS
78
+
79
+
-`skip_verify` - do not verify the server certificate (**insecure**)
80
+
-`ca_certificate` - instead of `skip_verify` it is better to pass CA certificate explicitly (in case of self-signed certificates).
81
+
-`client_certificate`/`client_private_key` - authentication using TLS certificates (mTLS) (see [ClickHouse documentation](https://clickhouse.com/docs/operations/external-authenticators/ssl-x509) for more info)
0 commit comments