Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit 53061ff

Browse files
committed
Upgrade Rust toolchain to 1.80.0
This also tweaks the workspace-level lints configuration to add priority on groups
1 parent 8737d6f commit 53061ff

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ jobs:
195195

196196
- name: Install toolchain
197197
run: |
198-
rustup toolchain install 1.78.0
199-
rustup default 1.78.0
198+
rustup toolchain install 1.80.0
199+
rustup default 1.80.0
200200
rustup component add clippy
201201
202202
- name: Setup OPA

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ package.repository = "https://github.com/matrix-org/matrix-authentication-servic
1616
unsafe_code = "forbid"
1717

1818
[workspace.lints.clippy]
19-
all = "deny"
20-
pedantic = "warn"
19+
# We use groups as good defaults, but with a lower priority so that we can override them
20+
all = { level = "deny", priority = -1 }
21+
pedantic = { level = "warn", priority = -1 }
2122

2223
str_to_string = "deny"
2324

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# The Debian version and version name must be in sync
99
ARG DEBIAN_VERSION=12
1010
ARG DEBIAN_VERSION_NAME=bookworm
11-
ARG RUSTC_VERSION=1.78.0
11+
ARG RUSTC_VERSION=1.80.0
1212
# XXX: Upgrade to 0.10.0 blocked by https://github.com/ziglang/zig/issues/10915#issuecomment-1354548110
1313
# XXX: Upgrade to 0.11.0 blocked by https://github.com/rust-cross/cargo-zigbuild/issues/162
1414
ARG ZIG_VERSION=0.9.1

0 commit comments

Comments
 (0)