Andrew Clemons 851533f256 development/rustup: Updated for version 1.25.2. 1 gadu atpakaļ
..
README 851533f256 development/rustup: Updated for version 1.25.2. 1 gadu atpakaļ
offline_build.diff.gz 851533f256 development/rustup: Updated for version 1.25.2. 1 gadu atpakaļ
rustup.SlackBuild 851533f256 development/rustup: Updated for version 1.25.2. 1 gadu atpakaļ
rustup.info 851533f256 development/rustup: Updated for version 1.25.2. 1 gadu atpakaļ
slack-desc 7cd2c7c40c development/rustup: Updated for version 1.21.1. 4 gadi atpakaļ

README

rustup - The Rust toolchain installer

If you want to use the versions of rust installed through rustup by
default for everything, you'll need to add links to the rustup binary
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-clippy cargo-fmt cargo-miri clippy-driver \
rls rust-gdb rust-lldb rustc rustdoc rustfmt
do
(
cd $HOME/.rustup/shims
ln -s /usr/bin/rustup $lnk
)
done

Then add the directory to your path (.bashrc for example):
export PATH="$HOME/.rustup/shims:$PATH"