Skip to content

Commit 9ff33f1

Browse files
committed
fix: lints
1 parent 3609ff0 commit 9ff33f1

File tree

3 files changed

+2
-9
lines changed
  • libs/@local/hashql
  • tests/graph/test-data/rust/src/seeding/producer/ontology

3 files changed

+2
-9
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;

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)