Avoid installing rustdoc

This commit is contained in:
Wildan Mubarok 2025-08-26 12:10:26 +00:00
parent 947bd9de6d
commit ccc94d8c2c
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# This script install the Rust toolchain and the build system dependencies
# in Podman after the image has been built
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
curl -sSLf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
cargo +stable binstall --no-confirm --force --version 0.10.0 sccache

View File

@ -1,3 +1,4 @@
[toolchain]
channel = "nightly-2025-01-12"
components = ["rust-src"]
components = ["rust-src", "rustfmt", "clippy"]
profile = "minimal"