This repository was archived by the owner on Sep 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ jobs:
195
195
196
196
- name : Install toolchain
197
197
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
200
200
rustup component add clippy
201
201
202
202
- name : Setup OPA
Original file line number Diff line number Diff line change @@ -16,8 +16,9 @@ package.repository = "https://github.com/matrix-org/matrix-authentication-servic
16
16
unsafe_code = " forbid"
17
17
18
18
[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 }
21
22
22
23
str_to_string = " deny"
23
24
Original file line number Diff line number Diff line change 8
8
# The Debian version and version name must be in sync
9
9
ARG DEBIAN_VERSION=12
10
10
ARG DEBIAN_VERSION_NAME=bookworm
11
- ARG RUSTC_VERSION=1.78 .0
11
+ ARG RUSTC_VERSION=1.80 .0
12
12
# XXX: Upgrade to 0.10.0 blocked by https://github.com/ziglang/zig/issues/10915#issuecomment-1354548110
13
13
# XXX: Upgrade to 0.11.0 blocked by https://github.com/rust-cross/cargo-zigbuild/issues/162
14
14
ARG ZIG_VERSION=0.9.1
You can’t perform that action at this time.
0 commit comments