forked from extern/nushell
b714e034aa
* remove some old documentation, relocate others * small tweak to default config
10 lines
241 B
Markdown
10 lines
241 B
Markdown
# 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 running:
|
|
```sh
|
|
cargo build --no-default-features --features=rustyline-support
|
|
```
|
|
|