This commit is contained in:
Jeremy Soller 2025-08-28 09:52:16 -06:00
commit 0fb1385ac3
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"