From 9ead53097e498461cdba8e470ca278d030dc642d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 17 May 2023 14:27:04 +0300 Subject: [PATCH] docs(readme): fix the OpenSSL feature example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 705370a..f50cc62 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ To enable a feature for build, pass `--features` flag to `cargo build` command. For example, to reuse the OpenSSL present on a distro already: ```sh -cargo build --release --features openssl +cargo build --release --no-default-features --features openssl ``` #### Testing