We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The newly released (01.01.2021) rust toolchain version 1.49.0 found a following lint problem:
error: explicit lifetimes given in parameter types where they could be elided (or replaced with `'_` if needed by type declaration) --> src/providers/pkcs11/key_metadata.rs:16:5 | 16 | / pub(super) fn get_ordered_locks<'a>( 17 | | &'a self, 18 | | ) -> ( 19 | | &'a RwLock<dyn ManageKeyInfo + Send + Sync>, 20 | | &'a RwLock<LocalIdStore>, 21 | | ) { | |_____^ | = note: `-D clippy::needless-lifetimes` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
It needs to be fixed to unblock further development, including merging PR#303 (a new CryptoAuthentication Library based provider).
The text was updated successfully, but these errors were encountered:
This will need to be solved for all the other parallaxsecond crates as well
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The newly released (01.01.2021) rust toolchain version 1.49.0 found a following lint problem:
It needs to be fixed to unblock further development, including merging PR#303 (a new CryptoAuthentication Library based provider).
The text was updated successfully, but these errors were encountered: