feat: add cargo workpaces + add pass-webauthn
#10
Annotations
4 errors and 3 warnings
failed to resolve: use of undeclared crate or module `passkey_types`:
pass-webauthn/src/impls.rs#L5
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`
|
clippy
Clippy had exited with the 101 exit code
|
check
Process completed with exit code 101.
|
test
Process completed with exit code 101.
|
useless use of `vec!`:
verifier/src/lib.rs#L76
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
|
clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
clippy
The following actions use a deprecated Node.js version and will be forced to run on node20: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|