Hi there,
I'm not able to run my rust 1.88 project with the following image:
lukemathwalker/cargo-chef:latest-rust-latest
Which fails with:
error: rustc 1.87.0 is not supported by the following packages:
I had to temporarily use the rust image as as workaround to make it work:
FROM rust:1 AS chef
RUN cargo install cargo-chef
Thanks!