burn the logs and use 'install.bash'
[webi-installers/.git] / rustlang / install.bash
1 #!/bin/bash
2
3 # title: Rust
4 # homepage: https://rust-lang.org
5 # tagline: The Rust Toolchain
6 # description: |
7 #   A language empowering everyone to build reliable and efficient software.
8 #
9 #   Rust is the modern language used to build all of your favorite CLI tools, such as
10 #     - rg (ripgrep, modern grep)
11 #     - fd (modern find)
12 #     - sd (modern sed)
13 #     - lsd (modern ls)
14 #     - bat (modern cat)
15 # examples: |
16 #   ```bash
17 #   cargo install ripgrep
18 #   ```
19 #   <br/>
20 #
21 #   ```bash
22 #   cargo new hello --bin
23 #   cargo build --release
24 #   ./hello
25 #   > "Hello, world!"
26 #   ```
27
28
29 # Straight from https://rustup.rs/
30 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh