From 5f795b1aec277426ac6cdc656c6c92d9968dd90a Mon Sep 17 00:00:00 2001 From: dzorya Date: Sat, 9 Sep 2023 23:34:07 +0300 Subject: [PATCH] =?UTF-8?q?Mention=20that=20perl=20is=20required=20for=20f?= =?UTF-8?q?eature=20static-link-openssl=E2=80=A6=20(#10291)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this PR should close https://github.com/nushell/nushell/issues/10290 it is a simple comment in Cargo.toml, which explains that perl is required for feature static-link-openssl to work. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f0f1b9716b..18ee8d581b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -117,7 +117,8 @@ stable = ["default"] wasi = ["nu-cmd-lang/wasi"] # NOTE: individual features are also passed to `nu-cmd-lang` that uses them to generate the feature matrix in the `version` command -# Enable to statically link OpenSSL; otherwise the system version will be used. Not enabled by default because it takes a while to build +# Enable to statically link OpenSSL (perl is required, to build OpenSSL https://docs.rs/openssl/latest/openssl/); +# otherwise the system version will be used. Not enabled by default because it takes a while to build static-link-openssl = ["dep:openssl", "nu-cmd-lang/static-link-openssl"] mimalloc = ["nu-cmd-lang/mimalloc", "dep:mimalloc"]