GitHub Actions / clippy
failed
Oct 11, 2024 in 0s
clippy
1 error, 1 warning
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 1 |
Warning | 1 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.81.0 (eeb90cda1 2024-09-04)
- cargo 1.81.0 (2dbb1af80 2024-08-20)
- clippy 0.1.81 (eeb90cd 2024-09-04)
Annotations
Check failure on line 5 in pass-webauthn/src/impls.rs
github-actions / clippy
failed to resolve: use of undeclared crate or module `passkey_types`
error[E0433]: failed to resolve: use of undeclared crate or module `passkey_types`
--> pass-webauthn/src/impls.rs:5:5
|
5 | use passkey_types::encoding::base64;
| ^^^^^^^^^^^^^ use of undeclared crate or module `passkey_types`
Check warning on line 76 in verifier/src/lib.rs
github-actions / clippy
useless use of `vec!`
warning: useless use of `vec!`
--> verifier/src/lib.rs:76:19
|
76 | let message = vec![authenticator_data, &client_data_hash].concat();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[authenticator_data, &client_data_hash]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
= note: `#[warn(clippy::useless_vec)]` on by default
Loading