Skip to content

Commit aea493e

Browse files
committed
Use resolver v3
1 parent 40c6485 commit aea493e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ members = [
4444
"tools/upgrade-version",
4545
]
4646
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
4848
# manifests don't have editions.
49-
resolver = "2"
49+
resolver = "3"
5050

5151
[profile.release]
5252
opt-level = 3

crates/standalone/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG CARGO_PROFILE=release
44
FROM rust:1.84.0 AS chef
55
RUN rust_target=$(rustc -vV | awk '/^host:/{ print $2 }') && \
66
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
88
WORKDIR /usr/src/app
99

1010
FROM chef AS planner

0 commit comments

Comments
 (0)