Skip to content

Commit

Permalink
feat: Upgrade to Rust 1.80 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
timleslie authored Aug 5, 2024
1 parent e1a558d commit 8ad3cd8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ a new version number. Fill in an appropriate changelog entry in this file to
get CI passing and enable the changes to land on `main`.
``

## 1.80-0.0

- Updated Rust version to `1.80.0`
- Updated `cargo-deny` to `1.16.0`
- Updated `cargo-make` to `0.37.15`

## 1.79-0.0

- Updated Rust version to `1.79.0`
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
####

FROM --platform=$BUILDPLATFORM rust:1.79.0-slim AS builder
FROM --platform=$BUILDPLATFORM rust:1.80.0-slim AS builder

WORKDIR /build

Expand Down Expand Up @@ -173,12 +173,12 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
--mount=type=cache,target=/build/target \
export CARGO_BUILD_TARGET=`./docker-target-triple` && \
# cargo-deny: used for dependency license and security checks.
cargo install --version="0.14.24" cargo-deny && \
cargo install --version="0.16.0" cargo-deny && \
# cargo-about: used for generating license files for distribution to consumers,
# which may be required for compliance with some open-source licenses.
cargo install --version="0.6.2" cargo-about && \
# cargo-make: used for defining dev & build tasks.
cargo install --version="0.37.13" cargo-make && \
cargo install --version="0.37.15" cargo-make && \
# cargo-release: used for cutting releases.
cargo install --version="0.25.10" cargo-release && \
# cargo-machete: used for finding unused dependencies.
Expand All @@ -200,7 +200,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked \
#
####

FROM rust:1.79.0-slim
FROM rust:1.80.0-slim

# Install extra system dependencies not included in the slim base image.
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
Expand Down

0 comments on commit 8ad3cd8

Please sign in to comment.