dnf -y install gcc
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
brew install rustup-init
rustup-init -y --profile default --no-modify-path
#rustup-init
source $HOME/.cargo/env
rustup self update
rustup update
rustup component add clippy
with docker
docker run --rm -v $(pwd):/m -w /m rust:latest cargo init .
docker run --rm -v $(pwd):/m -w /m rust:latest cargo build
docker run --rm -v $(pwd):/m -w /m rust:latest cargo run
alias ccargo='docker run --rm -v $(pwd):/m -w /m rust:latest cargo'