You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
They append to ~/.zshenv and/or ~/.profile the following:
."$HOME/.cargo/env"
and then include this script, ~/.cargo/env:
#!/bin/sh# rustup shell setup# affix colons on either side of $PATH to simplify matchingcase":${PATH}:"in*:"$HOME/.cargo/bin":*)
;;
*)
# Prepending path in case a system-installed rustc needs to be overriddenexport PATH="$HOME/.cargo/bin:$PATH"
;;
esac