Skip to content

Commit e673aa6

Browse files
committed
Rename .cargo/config to .cargo/config.toml to silence warning
1 parent c43840a commit e673aa6

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

builders/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ RUN chmod +x /opt/*.sh
2828

2929
RUN mkdir /.cargo
3030
RUN chmod +rx /.cargo
31-
COPY guest/cargo-config /.cargo/config
31+
COPY guest/cargo-config.toml /.cargo/config.toml
3232

3333
CMD ["/opt/build_muslc.sh"]

builders/Dockerfile.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ RUN chmod +x /usr/local/bin/*.sh
4949

5050
RUN mkdir /.cargo
5151
RUN chmod +rx /.cargo
52-
COPY guest/cargo-config /.cargo/config
52+
COPY guest/cargo-config.toml /.cargo/config.toml
5353

5454
CMD ["bash", "-c", "echo 'Argument missing. Pass one build script (e.g. build_macos.sh) to docker run' && exit 1"]

builders/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ RUN chmod +x /usr/local/bin/*.sh
3131

3232
RUN mkdir /.cargo
3333
RUN chmod +rx /.cargo
34-
COPY guest/cargo-config /.cargo/config
34+
COPY guest/cargo-config.toml /.cargo/config.toml
3535

3636
CMD ["bash", "-c", "echo 'Argument missing. Pass one build script (e.g. build_linux.sh) to docker run' && exit 1"]

builders/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ See those DockerHub repos for all available versions of the builder images.
2525

2626
- Update Rust to 1.80.0.
2727
- Update Dockerfile.cross from Debian Bullseye to Bookworm ([#533])
28+
- Rename `.cargo/config` to `.cargo/config.toml` to silence warning
2829

2930
[#533]: https://github.com/CosmWasm/wasmvm/issues/533
3031

File renamed without changes.

0 commit comments

Comments
 (0)