Skip to content

Update GH toolchain #92

Update GH toolchain

Update GH toolchain #92

GitHub Actions / clippy succeeded Dec 11, 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.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

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