Skip to content

Commit

Permalink
ci: Update stable Rust and typos (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Dec 18, 2024
1 parent c4d5950 commit 326cb2b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ env:
# version like 1.70. Note that we only specify MAJOR.MINOR and not PATCH so that bugfixes still
# come automatically. If the version specified here is no longer the latest stable version,
# then please feel free to submit a PR that adjusts it along with the potential clippy fixes.
RUST_STABLE_VER: "1.82" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
RUST_STABLE_VER: "1.83" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
# The purpose of checking with the minimum supported Rust toolchain is to detect its staleness.
# If the compilation fails, then the version specified here needs to be bumped up to reality.
# Be sure to also update the rust-version property in the workspace Cargo.toml file,
Expand Down Expand Up @@ -452,4 +452,4 @@ jobs:
uses: actions/checkout@v4

- name: Check typos
uses: crate-ci/typos@v1.27.0
uses: crate-ci/typos@v1.28.3
2 changes: 2 additions & 0 deletions tree_arena/tests/basic_tests.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2024 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

//! Tests for the [`TreeArena`].
use std::mem;

use tree_arena::*;
Expand Down
2 changes: 2 additions & 0 deletions xilem_core/tests/array_sequence.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2024 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

//! Tests for [`SequenceView`] with arrays.
#![expect(
clippy::shadow_unrelated,
reason = "Deferred: Noisy. Fix is to use scopes"
Expand Down
2 changes: 2 additions & 0 deletions xilem_core/tests/tuple_sequence.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2024 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

//! Tests for [`SequenceView`] with tuples.
#![expect(
clippy::shadow_unrelated,
reason = "Deferred: Noisy. Fix is to use scopes"
Expand Down
2 changes: 2 additions & 0 deletions xilem_core/tests/vec_sequence.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2024 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0

//! Tests for [`SequenceView`] with vectors.
#![expect(
clippy::shadow_unrelated,
reason = "Deferred: Noisy. Fix is to use scopes"
Expand Down

0 comments on commit 326cb2b

Please sign in to comment.