Skip to content

CI fixes

CI fixes #507

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Jun 15, 2023 in 0s

clippy

3 warnings

Details

Results

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

Versions

  • rustc 1.72.0-nightly (8c74a5d27 2023-06-14)
  • cargo 1.72.0-nightly (49b6d9e17 2023-06-09)
  • clippy 0.1.72 (8c74a5d 2023-06-14)

Annotations

Check warning on line 6 in zerostash/src/config/symmetric_key.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

constant `SERVICE_NAME` is never used

warning: constant `SERVICE_NAME` is never used
 --> zerostash/src/config/symmetric_key.rs:6:7
  |
6 | const SERVICE_NAME: &str = "dev.symmetree.zerostash";
  |       ^^^^^^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default

Check warning on line 77 in zerostash/src/config/symmetric_key.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `stash`

warning: unused variable: `stash`
  --> zerostash/src/config/symmetric_key.rs:77:42
   |
77 |     pub fn interactive_credentials(self, stash: &str) -> Result<(SecretString, SecretString)> {
   |                                          ^^^^^ help: if this is intentional, prefix it with an underscore: `_stash`

Check warning on line 49 in zerostash/src/config/symmetric_key.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused variable: `stash`

warning: unused variable: `stash`
  --> zerostash/src/config/symmetric_key.rs:49:34
   |
49 |     pub fn fill_random(mut self, stash: &str) -> Result<Self> {
   |                                  ^^^^^ help: if this is intentional, prefix it with an underscore: `_stash`
   |
   = note: `#[warn(unused_variables)]` on by default