Upgrade dependencies, fix clippy lints #1390
ci.yaml
on: pull_request
Build & Test Project
2m 27s
Annotations
2 warnings
Build & Test Project:
moss/src/varlink/com_serpentos_moss.rs#L110
[clippy] reported by reviewdog 🐶
warning: the following explicit lifetimes could be elided: 'a
--> moss/src/varlink/com_serpentos_moss.rs:110:6
|
110 | impl<'a> VarlinkCallError for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
110 - impl<'a> VarlinkCallError for varlink::Call<'a> {}
110 + impl VarlinkCallError for varlink::Call<'_> {}
|
Raw Output:
moss/src/varlink/com_serpentos_moss.rs:110:6:w:warning: the following explicit lifetimes could be elided: 'a
--> moss/src/varlink/com_serpentos_moss.rs:110:6
|
110 | impl<'a> VarlinkCallError for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
110 - impl<'a> VarlinkCallError for varlink::Call<'a> {}
110 + impl VarlinkCallError for varlink::Call<'_> {}
|
__END__
|
Build & Test Project:
moss/src/varlink/com_serpentos_moss.rs#L123
[clippy] reported by reviewdog 🐶
warning: the following explicit lifetimes could be elided: 'a
--> moss/src/varlink/com_serpentos_moss.rs:123:6
|
123 | impl<'a> Call_Version for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
123 - impl<'a> Call_Version for varlink::Call<'a> {}
123 + impl Call_Version for varlink::Call<'_> {}
|
Raw Output:
moss/src/varlink/com_serpentos_moss.rs:123:6:w:warning: the following explicit lifetimes could be elided: 'a
--> moss/src/varlink/com_serpentos_moss.rs:123:6
|
123 | impl<'a> Call_Version for varlink::Call<'a> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
123 - impl<'a> Call_Version for varlink::Call<'a> {}
123 + impl Call_Version for varlink::Call<'_> {}
|
__END__
|