From dcfef0edad3ac510f09db0adfbb5ddb961e89d2e Mon Sep 17 00:00:00 2001 From: d4h0 <183805+d4h0@users.noreply.github.com> Date: Sat, 9 Oct 2021 17:57:29 +0400 Subject: [PATCH] Remove "runtime-async-std-native-tls (on by default)"-hint It seems, the 'runtime-async-std-native-tls' feature isn't active by default (as mentioned in the README), so this PR removes the hint. Currently, users that don't use `async-std` might think they have to disable the default features to not pull-in `async-std` needlessly. But that doesn't seem to be required, because 'runtime-async-std-native-tls' isn't active by default. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b3ad2ce68..2ffd013ad8 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ sqlx = { version = "0.5", features = [ "runtime-async-std-native-tls" ] } #### Cargo Feature Flags -- `runtime-async-std-native-tls` (on by default): Use the `async-std` runtime and `native-tls` TLS backend. +- `runtime-async-std-native-tls`: Use the `async-std` runtime and `native-tls` TLS backend. - `runtime-async-std-rustls`: Use the `async-std` runtime and `rustls` TLS backend.