Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Herramientas de Rust


Primero instala rustup

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup update
rustup component add rust-analyzer

Seguridad

cargo install cargo-audit
cargo install cargo-update
cargo install cargo-download

Cómo revisar con cargo audit

cargo download pkg > pkg.gz
tar -xvf pkg.gz
cd pkg*
cargo audit

Cómo usar cargo-update

cargo install-update -l

Instalar paquetes

# Buscar dependencias si es necesario
cargo install paquete
cargo install --locked paquete