update ahash (#2344) #3401
Annotations
1 error and 5 warnings
coverage
Codecov: Failed to properly upload: The process '/home/runner/work/_actions/codecov/codecov-action/v3/dist/codecov' failed with exit code 255
|
field `0` is never read:
src/directory/watch_event_router.rs#L35
warning: field `0` is never read
--> src/directory/watch_event_router.rs:35:24
|
35 | pub struct WatchHandle(Arc<WatchCallback>);
| ----------- ^^^^^^^^^^^^^^^^^^
| |
| field in this struct
|
= note: `WatchHandle` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
35 | pub struct WatchHandle(());
| ~~
|
field `0` is never read:
src/directory/directory.rs#L43
warning: field `0` is never read
--> src/directory/directory.rs:43:26
|
43 | pub struct DirectoryLock(Box<dyn Send + Sync + 'static>);
| ------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| field in this struct
|
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
43 | pub struct DirectoryLock(());
| ~~
|
this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`:
columnar/src/column_values/mod.rs#L105
warning: this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
--> columnar/src/column_values/mod.rs:105:14
|
105 | .into_iter()
| ^^^^^^^^^ help: call directly: `iter_mut`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
|
this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`:
columnar/src/column_values/mod.rs#L78
warning: this `.into_iter()` call is equivalent to `.iter_mut()` and will not consume the `slice`
--> columnar/src/column_values/mod.rs:78:14
|
78 | .into_iter()
| ^^^^^^^^^ help: call directly: `iter_mut`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#into_iter_on_ref
= note: `#[warn(clippy::into_iter_on_ref)]` on by default
|
coverage
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: codecov/codecov-action@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|