Skip to content

Commit 1d2dfa0

Browse files
committed
infra: update stable Rust toolchain to 1.88.0
Updating the toolchain required a fix to steam-track as the `uninlined_format_args` lint was moved from the `pedantic` group to the `style` group of lints, see rust-lang/rust-clippy#14160. As the `clippy::all` group does not include the pedantic group, warnings were emitted for the generated Cap'n Proto code. To disable all warnings currently raised both clippy allow attributes are now required.
1 parent cc0d407 commit 1d2dfa0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (c) 2025 Graphcore Ltd. All rights reserved.
22

33
[toolchain]
4-
channel = "1.87.0"
4+
channel = "1.88.0"
55
profile = "default"

steam-track/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ macro_rules! error {
285285
pub mod steam_track_capnp {
286286
// No need to emit warnings for auto-generated Cap'n Proto code
287287
#![allow(missing_docs)]
288+
#![allow(clippy::all)]
288289
#![allow(clippy::pedantic)]
289290

290291
include!(concat!(env!("OUT_DIR"), "/steam_track_capnp.rs"));

0 commit comments

Comments
 (0)