| Age | Commit message (Collapse) | Author |
|
Since #1633 porting to Clap, min Rust version reqirement changes.
|
|
Stopgap measure so that people stop installing into System32 (since that's the default Powershell elevated prompt directory for some reason).
|
|
|
|
closes #577df
Co-authored-by: Caleb Webber <seeplusplus@users.noreply.github.com>
|
|
Co-authored-by: Corentin ARNOULD <corentin.arn@gmail.com>
|
|
|
|
- adds a new 'clippy' category for exercises
- clippy exercises should throw no warnings
- install script now also installs clippy
is related to https://github.com/rust-lang/rust-clippy/issues/2604
|
|
|
|
Adds a powershell install script for windows users that are at least
running powershell 5. It is almost a direct port of install.sh.
This would be used to automatically download the script much like
curl | bash, but with:
`Invoke-WebRequest https://urltoscript.com | Select-Object
-ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1;
Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression
$env:TMP/install_rustlings.ps1`
|