From 9c016ad47997a0aded7d556e8a33fbd536955848 Mon Sep 17 00:00:00 2001 From: Eli Flanagan Date: Thu, 29 Jul 2021 16:21:20 -0400 Subject: [PATCH] document compiling without openssl (#3862) --- docs/howto_build_without_openssl.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/howto_build_without_openssl.md diff --git a/docs/howto_build_without_openssl.md b/docs/howto_build_without_openssl.md new file mode 100644 index 0000000000..939100b55b --- /dev/null +++ b/docs/howto_build_without_openssl.md @@ -0,0 +1,9 @@ +# how to compile without OpenSSL + +You may find it desirable to compile nu shell without requiring an OpenSSL installation on your system. + +You can do this by runnning: +```sh +cargo build --no-default-features --features=rustyline-support +``` +