Add cargo setup to README

I did not have cargo installed on my system when I first tried to build the repo from a fresh git clone (I had not noticed it was a rust project), and it wasn't called out as a dependency for installation from source. I've added it as a noted dependency with some quick, collapsible installation instructions I followed to get it installed.
pull/359/head
Fred Weitendorf 1 month ago committed by Sunshine
parent d8c3620d00
commit f9e961f088

@ -107,7 +107,25 @@ sudo install -b dist/run-in-container.sh /usr/local/bin/monolith
#### From [source](https://github.com/Y2Z/monolith)
Dependency: `libssl`
Dependencies: `libssl` `cargo`
<details>
<summary>Install cargo (GNU/Linux)</summary>
Check if cargo is installed
```console
cargo -v
```
If cargo is not already installed, install and add it to your existing ```$PATH``` (paraphrasing the [official installation instructions](https://doc.rust-lang.org/cargo/getting-started/installation.html)):
```console
curl https://sh.rustup.rs -sSf | sh
. "$HOME/.cargo/env"
```
Proceed with installing from source:
</details>
```console
git clone https://github.com/Y2Z/monolith.git

Loading…
Cancel
Save