Skip to content

chore: bump arrow

chore: bump arrow #131

GitHub Actions / clippy succeeded Jul 16, 2023 in 0s

clippy

2 warnings

Details

Results

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

Versions

  • rustc 1.73.0-nightly (4c8bb79d9 2023-07-15)
  • cargo 1.73.0-nightly (694a57956 2023-07-11)
  • clippy 0.1.72 (4c8bb79 2023-07-15)

Annotations

Check warning on line 11 in azure-kusto-data/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

missing documentation for a module

warning: missing documentation for a module
  --> azure-kusto-data/src/lib.rs:11:1
   |
11 | pub mod client_details;
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> azure-kusto-data/src/lib.rs:1:9
   |
1  | #![warn(missing_docs)]
   |         ^^^^^^^^^^^^

Check warning on line 137 in azure-kusto-data/src/arrow.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

explicit call to `.into_iter()` in function argument accepting `IntoIterator`

warning: explicit call to `.into_iter()` in function argument accepting `IntoIterator`
   --> azure-kusto-data/src/arrow.rs:137:14
    |
137 |         .zip(table.columns.into_iter())
    |              ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing the `.into_iter()`: `table.columns`
    |
note: this parameter accepts any `IntoIterator`, so you don't need to call `.into_iter()`
   --> /rustc/4c8bb79d9f565115637cc6da739f8389e79f3a29/library/core/src/iter/traits/iterator.rs:641:12
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
    = note: `#[warn(clippy::useless_conversion)]` on by default