mirror of
https://github.com/nushell/nushell.git
synced 2024-12-01 12:54:16 +01:00
10 lines
242 B
Markdown
10 lines
242 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 runnning:
|
||
|
```sh
|
||
|
cargo build --no-default-features --features=rustyline-support
|
||
|
```
|
||
|
|