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

Secretless build #34

Merged
merged 6 commits into from
Apr 11, 2024

Fixed build error

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

Secretless build #34

Fixed build error
82bcc39
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Apr 11, 2024 in 1s

clippy

4 warnings

Details

Results

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

Versions

  • rustc 1.79.0-nightly (aa067fb98 2024-04-10)
  • cargo 1.79.0-nightly (74fd5bc73 2024-04-10)
  • clippy 0.1.79 (aa067fb 2024-04-10)

Annotations

Check warning on line 6 in azure-kusto-data/src/error.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the item `thiserror` is imported redundantly

warning: the item `thiserror` is imported redundantly
 --> azure-kusto-data/src/error.rs:6:5
  |
6 | use thiserror;
  |     ^^^^^^^^^ the item `thiserror` is already defined by prelude

Check warning on line 6 in azure-kusto-data/src/cloud_info.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the item `Context` is imported redundantly

warning: the item `Context` is imported redundantly
 --> azure-kusto-data/src/cloud_info.rs:6:18
  |
5 | use azure_core::prelude::*;
  |     ---------------------- the item `Context` is already imported here
6 | use azure_core::{Context, Method, Pipeline, Request, StatusCode};
  |                  ^^^^^^^

Check warning on line 15 in azure-kusto-data/src/client.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the item `TryFrom` is imported redundantly

warning: the item `TryFrom` is imported redundantly
  --> azure-kusto-data/src/client.rs:15:5
   |
15 | use std::convert::TryFrom;
   |     ^^^^^^^^^^^^^^^^^^^^^
  --> /rustc/aa067fb984d36462548bb785da221bfaf38253f0/library/std/src/prelude/mod.rs:148:13
   |
   = note: the item `TryFrom` is already defined here

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

See this annotation in the file changed.

@github-actions github-actions / clippy

the item `TryInto` is imported redundantly

warning: the item `TryInto` is imported redundantly
 --> azure-kusto-data/src/arrow.rs:1:5
  |
1 | use std::convert::TryInto;
  |     ^^^^^^^^^^^^^^^^^^^^^
 --> /rustc/aa067fb984d36462548bb785da221bfaf38253f0/library/std/src/prelude/mod.rs:148:13
  |
  = note: the item `TryInto` is already defined here
  |
  = note: `#[warn(unused_imports)]` on by default