summaryrefslogtreecommitdiffstats
path: root/development/rustup/README
diff options
context:
space:
mode:
author Andrew Clemons <andrew.clemons@gmail.com>2023-02-18 18:18:26 +0900
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2023-02-25 09:18:07 +0700
commit851533f2563f3b0b979ea41736da576d119d22fa (patch)
tree7fd52c0a8f78e14c6977c6d69a1ab5c5582eea3a /development/rustup/README
parent1d4e1d9e792e1d291e25d15ae50b2651952835ea (diff)
downloadslackbuilds-851533f2563f3b0b979ea41736da576d119d22fa.tar.gz
slackbuilds-851533f2563f3b0b979ea41736da576d119d22fa.tar.xz
development/rustup: Updated for version 1.25.2.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/rustup/README')
-rw-r--r--development/rustup/README6
1 files changed, 2 insertions, 4 deletions
diff --git a/development/rustup/README b/development/rustup/README
index 842cd2561b..70d31e61fa 100644
--- a/development/rustup/README
+++ b/development/rustup/README
@@ -7,7 +7,8 @@ on your path before the system rust.
You are free to choose where, but here is an example for a single user:
mkdir -p $HOME/.rustup/shims
-for lnk in cargo cargo-fmt rls rustc rustdoc rustfmt rust-gdb rust-lldb
+for lnk in cargo cargo-clippy cargo-fmt cargo-miri clippy-driver \
+rls rust-gdb rust-lldb rustc rustdoc rustfmt
do
(
cd $HOME/.rustup/shims
@@ -17,6 +18,3 @@ done
Then add the directory to your path (.bashrc for example):
export PATH="$HOME/.rustup/shims:$PATH"
-
-NOTE: rustup 1.24.3 is the latest version which will build since
-1.25.0 and newer require rustc 1.61 or newer.