Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps #1966

Merged
merged 2 commits into from
Jul 29, 2024

chore(*): bump deps

e6fc56c
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Bump deps #1966

chore(*): bump deps
e6fc56c
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jul 29, 2024 in 1s

clippy

3 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 3
Note 0
Help 0

Versions

  • rustc 1.80.0 (051478957 2024-07-21)
  • cargo 1.80.0 (376290515 2024-07-16)
  • clippy 0.1.80 (0514789 2024-07-21)

Annotations

Check warning on line 61 in store/src/local/mutation_index/results.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `remaining` is never read

warning: field `remaining` is never read
  --> store/src/local/mutation_index/results.rs:61:9
   |
58 | pub struct MutationResults {
   |            --------------- field in this struct
...
61 |     pub remaining: usize,
   |         ^^^^^^^^^

Check warning on line 285 in store/src/local/entity_index/searcher.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `matched_mutation` is never read

warning: field `matched_mutation` is never read
   --> store/src/local/entity_index/searcher.rs:285:9
    |
284 | pub struct SearchResult {
    |            ------------ field in this struct
285 |     pub matched_mutation: MutationMetadata,
    |         ^^^^^^^^^^^^^^^^

Check warning on line 59 in store/src/local/entity_index/aggregator.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

field `last_block_offset` is never read

warning: field `last_block_offset` is never read
  --> store/src/local/entity_index/aggregator.rs:59:9
   |
28 | pub struct EntityAggregator {
   |            ---------------- field in this struct
...
59 |     pub last_block_offset: Option<BlockOffset>,
   |         ^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(dead_code)]` on by default