From 92662935540099a9830dcafee9642cbf60c80aa6 Mon Sep 17 00:00:00 2001 From: Skylar Simoncelli <128400943+skylar-simoncelli@users.noreply.github.com> Date: Mon, 13 Jan 2025 15:13:57 +0100 Subject: [PATCH] fix: cargo-chef bug workaround --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 2c02d1702..9a2540ac8 100644 --- a/Earthfile +++ b/Earthfile @@ -23,7 +23,7 @@ setup: COPY Cargo.* .rustfmt.toml rust-toolchain.toml . RUN rustup show - RUN cargo install --locked cargo-chef && cp "$CARGO_HOME/bin/cargo-chef" /usr/local/bin + RUN cargo install --locked --version 0.1.68 cargo-chef && cp "$CARGO_HOME/bin/cargo-chef" /usr/local/bin source: FROM +setup