Redesigned crate architecture #4653
Annotations
5 errors and 2 warnings
core clippy check:
identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs#L131
error: the following explicit lifetimes could be elided: 'a
--> identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs:131:6
|
131 | impl<'a> QuorumDriverTrait for QuorumDriverAdapter<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
131 - impl<'a> QuorumDriverTrait for QuorumDriverAdapter<'a> {
131 + impl QuorumDriverTrait for QuorumDriverAdapter<'_> {
|
|
core clippy check:
identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs#L161
error: the following explicit lifetimes could be elided: 'a
--> identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs:161:6
|
161 | impl<'a> ReadTrait for ReadAdapter<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
161 - impl<'a> ReadTrait for ReadAdapter<'a> {
161 + impl ReadTrait for ReadAdapter<'_> {
|
|
core clippy check:
identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs#L227
error: the following explicit lifetimes could be elided: 'a
--> identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs:227:6
|
227 | impl<'a> CoinReadTrait for CoinReadAdapter<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
227 - impl<'a> CoinReadTrait for CoinReadAdapter<'a> {
227 + impl CoinReadTrait for CoinReadAdapter<'_> {
|
|
core clippy check:
identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs#L246
error: the following explicit lifetimes could be elided: 'a
--> identity_iota_core/src/iota_interaction_rust/iota_client_rust_sdk.rs:246:6
|
246 | impl<'a> EventTrait for EventAdapter<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
246 - impl<'a> EventTrait for EventAdapter<'a> {
246 + impl EventTrait for EventAdapter<'_> {
|
|
core clippy check
Clippy had exited with the 101 exit code
|
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Loading