Skip to content

Commit c5d7350

Browse files
Update Rust toolchains to nightly-2025-12-15 (#8172)
Co-authored-by: Bilal Mahmoud <[email protected]> Co-authored-by: hash-worker[bot] <180894564+hash-worker[bot]@users.noreply.github.com>
1 parent 067d656 commit c5d7350

File tree

7 files changed

+6
-13
lines changed

7 files changed

+6
-13
lines changed

libs/@local/hashql/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
// Library Features
1919
allocator_api,
20-
array_windows,
20+
2121
assert_matches,
2222
binary_heap_into_iter_sorted,
2323
debug_closure_helpers,

libs/@local/hashql/mir/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,14 @@
1313
1414
// Library Features
1515
allocator_api,
16-
array_windows,
1716
assert_matches,
1817
const_type_name,
1918
iter_array_chunks,
2019
iter_collect_into,
2120
iter_intersperse,
2221
string_from_utf8_lossy_owned,
2322
try_trait_v2,
24-
step_trait,
25-
exact_length_collection
23+
step_trait
2624
)]
2725
#![expect(clippy::indexing_slicing)]
2826
extern crate alloc;

libs/error-stack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io]
99
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs]
10-
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-01&color=blue)][rust-version]
10+
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-15&color=blue)][rust-version]
1111
[![documentation](https://img.shields.io/docsrs/error-stack)][documentation]
1212
[![license](https://img.shields.io/crates/l/error-stack)][license]
1313

libs/error-stack/macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![crates.io](https://img.shields.io/crates/v/error-stack-macros)][crates.io]
88
[![libs.rs](https://img.shields.io/badge/libs.rs-error--stack--macros-orange)][libs.rs]
9-
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-01&color=blue)][rust-version]
9+
[![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-15&color=blue)][rust-version]
1010
[![documentation](https://img.shields.io/docsrs/error-stack-macros)][documentation]
1111
[![license](https://img.shields.io/crates/l/error-stack)][license]
1212

libs/error-stack/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! [![crates.io](https://img.shields.io/crates/v/error-stack)][crates.io]
44
//! [![libs.rs](https://img.shields.io/badge/libs.rs-error--stack-orange)][libs.rs]
5-
//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-01&color=blue)][rust-version]
5+
//! [![rust-version](https://img.shields.io/static/v1?label=Rust&message=1.83.0/nightly-2025-12-15&color=blue)][rust-version]
66
//!
77
//! [crates.io]: https://crates.io/crates/error-stack
88
//! [libs.rs]: https://lib.rs/crates/error-stack

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2025-12-01"
2+
channel = "nightly-2025-12-15"
33
components = ['rustfmt', 'clippy', 'llvm-tools-preview', 'miri', 'rust-src', 'rust-analyzer', 'rustc-codegen-cranelift-preview']

tests/graph/test-data/rust/src/seeding/producer/ontology/domain.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -328,11 +328,6 @@ impl DomainPolicy {
328328
let (remote_domain, fetched_at) = bind_remote(remote)?;
329329
let local_sampler = local.source.bind(user_catalog, org_catalog)?;
330330

331-
#[expect(
332-
clippy::tuple_array_conversions,
333-
reason = "constructing WeightedIndex from a fixed-size array is concise and \
334-
intentional here"
335-
)]
336331
let chooser = WeightedIndex::new([remote_weight, local_weight])
337332
.change_context(DomainBindingError::InvalidWeights)?;
338333
Ok(BoundDomainSampler::Mixed {

0 commit comments

Comments
 (0)