mirror of
https://github.com/nushell/nushell
synced 2024-12-28 14:03:09 +00:00
9 lines
241 B
Markdown
9 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
|
|
```
|
|
|