2024-07-09 14:58:07 +02:00
|
|
|
# This script install the Rust toolchain and the build system dependencies
|
|
|
|
# in Podman after the image has been built
|
2022-11-15 21:35:44 +01:00
|
|
|
|
2024-07-09 14:58:07 +02:00
|
|
|
#/usr/bin/env bash
|
2022-11-15 21:35:44 +01:00
|
|
|
|
2024-05-11 03:58:56 +02:00
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
|
|
|
|
cargo +stable install --force --version 0.1.1 cargo-config
|
|
|
|
cargo +stable install --force --version 1.16.0 just
|
2024-09-28 14:47:48 +02:00
|
|
|
cargo +stable install --force --version 0.27.0 cbindgen
|