Skip to content

Instantly share code, notes, and snippets.

View CdTCzech's full-sized avatar

Miroslav Hrnčíř CdTCzech

  • Czech Republic
View GitHub Profile
@CdTCzech
CdTCzech / rust-update.cmd
Last active February 20, 2020 11:04
Update rust and rust-analyzer (requires git, rustup and npm)
rustup update
pushd book
git pull
popd
pushd rust
git pull
popd
@CdTCzech
CdTCzech / rust-install.cmd
Last active June 29, 2022 10:36
Install rust and rust-analyzer (requires git, rustup and npm)
REM Uninstall toolchains
rustup toolchain uninstall stable
rustup toolchain uninstall beta
rustup toolchain uninstall nightly
REM Set nightly as default and install default profile with rust-src
rustup set profile default
rustup toolchain install nightly
rustup default nightly
rustup component add rust-src