feat(installation): include cargo binstall info for lune

This commit is contained in:
Erica Marigold 2023-10-02 21:41:37 +05:30
parent d910b08c06
commit 56a671b8ef
No known key found for this signature in database
GPG key ID: 7843994FD1386E35

View file

@ -95,8 +95,9 @@ yay -S [PACKAGE_NAME]
</details>
<details>
<summary>Building from source</summary>
<summary>crates.io</summary>
### Building from source
Building and installing from source requires the latest version of
[Rust & Cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html) to be installed on
your system. <br /> Once installed, run the following command in your terminal:
@ -104,6 +105,16 @@ your system. <br /> Once installed, run the following command in your terminal:
```sh copy filename="Bash"
cargo install lune --locked
```
### Binstall
`cargo binstall` provides a simple mechanism for installing rust binaries from crates.io, without
compiling from source unlike `cargo install`. Lune is packaged in a `binstall` compatible way.
With `binstall` installed and in your path, run:
```sh copy filename="Bash"
cargo binstall lune
```
</details>
## Next Steps