No longer configure using a sparse Cargo index for crates.io

This is the default since Rust 1.70.
This commit is contained in:
Paul van Tilburg 2023-06-08 11:02:15 +02:00
parent f88b499170
commit 33db9794a3
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
3 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,5 @@
FROM docker.io/rust:bullseye
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y g++-arm-linux-gnueabihf libc6-dev-armhf-cross
# Uncomment if you need to add more build dependencies to the image:

View File

@ -1,7 +1,5 @@
FROM docker.io/rust:bullseye
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y g++-aarch64-linux-gnu libc6-dev-arm64-cross
# Uncomment if you need to add more build dependencies to the image:

View File

@ -1,7 +1,5 @@
FROM docker.io/rust:bullseye
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN apt-get update && apt-get upgrade -y
# Uncomment if you need to add more build dependencies to the image:
# RUN apt-get install -y <build-depend..>