update (almost) all taglines and descs
[webi-installers/.git] / rustlang / install.sh
1 #!/bin/bash
2
3 # title: Rust
4 # homepage: https://rust-lang.org
5 # tagline: |
6 #   Rust: Empowering everyone to build reliable and efficient software.
7 # description: |
8 #   Rust is what C++ and D were trying to do, but didn't. It's a modern, safe, high-performance language, which also just so happens to be used to build all of your favorite CLI tools, such as:
9 #     - rg (ripgrep, modern grep)
10 #     - fd (modern find)
11 #     - sd (modern sed)
12 #     - lsd (modern ls)
13 #     - bat (modern cat)
14 # examples: |
15 #   ```bash
16 #   cargo install ripgrep
17 #   ```
18 #   <br/>
19 #
20 #   ```bash
21 #   cargo new hello --bin
22 #   cargo build --release
23 #   ./hello
24 #   > "Hello, world!"
25 #   ```
26
27
28 # Straight from https://rustup.rs/
29 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh