https://www.youtube.com/playlist?list=PLai5B987bZ9CoVR-QEIN9foz4QCJ0H2Y8 https://www.rust-lang.org https://doc.rust-lang.org/stable/book/ https://doc.rust-lang.org/rust-by-example/ https://rust-book.cs.brown.edu https://fasterthanli.me/articles/understanding-rust-futures-by-going-way-too-deep https://github.com/rust-lang/rustlings The installer, ``` curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ``` ``` info: downloading installer Welcome to Rust! This will download and install the official compiler for the Rust programming language, and its package manager, Cargo. Rustup metadata and toolchains will be installed into the Rustup home directory, located at: /Users/mhassey/.rustup This can be modified with the RUSTUP_HOME environment variable. The Cargo home directory is located at: /Users/mhassey/.cargo This can be modified with the CARGO_HOME environment variable. The cargo, rustc, rustup and other commands will be added to Cargo's bin directory, located at: /Users/mhassey/.cargo/bin This path will then be added to your PATH environment variable by modifying the profile files located at: /Users/mhassey/.profile /Users/mhassey/.zshenv You can uninstall at any time with rustup self uninstall and these changes will be reverted. Current installation options: default host triple: aarch64-apple-darwin default toolchain: stable (default) profile: default modify PATH variable: yes 1) Proceed with installation (default) 2) Customize installation 3) Cancel installation >1 info: profile set to 'default' info: default host triple is aarch64-apple-darwin warning: Updating existing toolchain, profile choice will be ignored info: syncing channel updates for 'stable-aarch64-apple-darwin' info: latest update on 2023-07-13, rust version 1.71.0 (8ede3aae2 2023-07-12) info: downloading component 'cargo' info: downloading component 'clippy' info: downloading component 'rust-std' 24.3 MiB / 24.3 MiB (100 %) 17.0 MiB/s in 1s ETA: 0s info: downloading component 'rustc' 52.6 MiB / 52.6 MiB (100 %) 24.5 MiB/s in 2s ETA: 0s info: downloading component 'rustfmt' info: removing previous version of component 'cargo' info: removing previous version of component 'clippy' info: removing previous version of component 'rust-std' info: removing previous version of component 'rustc' info: removing previous version of component 'rustfmt' info: installing component 'cargo' info: installing component 'clippy' info: installing component 'rust-std' 24.3 MiB / 24.3 MiB (100 %) 19.7 MiB/s in 1s ETA: 0s info: installing component 'rustc' 52.6 MiB / 52.6 MiB (100 %) 22.2 MiB/s in 2s ETA: 0s info: installing component 'rustfmt' info: default toolchain set to 'stable-aarch64-apple-darwin' stable-aarch64-apple-darwin updated - rustc 1.71.0 (8ede3aae2 2023-07-12) (from rustc 1.61.0 (fe5b13d68 2022-05-18)) Rust is installed now. Great! To get started you may need to restart your current shell. This would reload your PATH environment variable to include Cargo's bin directory ($HOME/.cargo/bin). To configure your current shell, run: source "$HOME/.cargo/env" mhassey at Sammy in ~ ``` https://youtu.be/br3GIIQeefY