File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ members = [
44
44
" tools/upgrade-version" ,
45
45
]
46
46
default-members = [" crates/cli" ]
47
- # cargo feature graph resolver. v2 is default in edition2021 but workspace
47
+ # cargo feature graph resolver. v3 is default in edition2024 but workspace
48
48
# manifests don't have editions.
49
- resolver = " 2 "
49
+ resolver = " 3 "
50
50
51
51
[profile .release ]
52
52
opt-level = 3
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG CARGO_PROFILE=release
4
4
FROM rust:1.84.0 AS chef
5
5
RUN rust_target=$(rustc -vV | awk '/^host:/{ print $2 }' ) && \
6
6
curl https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-$rust_target.tgz -fL | tar xz -C $CARGO_HOME/bin
7
- RUN cargo binstall -y cargo-chef@0.1.56
7
+ RUN cargo binstall -y cargo-chef@0.1.70
8
8
WORKDIR /usr/src/app
9
9
10
10
FROM chef AS planner
You can’t perform that action at this time.
0 commit comments