chore: change loopdev dependency to loopdev-3 #427
Merged
GitHub Actions / clippy
succeeded
Jun 27, 2025 in 0s
clippy
1 warning
Details
Results
| Message level | Amount |
|---|---|
| Internal compiler error | 0 |
| Error | 0 |
| Warning | 1 |
| Note | 0 |
| Help | 0 |
Versions
- rustc 1.90.0-nightly (b03b3a7ec 2025-06-26)
- cargo 1.90.0-nightly (409fed7dc 2025-06-23)
- clippy 0.1.89 (b03b3a7ec9 2025-06-26)
Annotations
Check warning on line 64 in updatehub-sdk/tests/openapi_integration.rs
github-actions / clippy
lifetime flowing from input to output with different syntax can be confusing
warning: lifetime flowing from input to output with different syntax can be confusing
--> updatehub-sdk/tests/openapi_integration.rs:64:14
|
64 | fn start(&self) -> (String, Container<ApiSprout>) {
| ^^^^^ -------------------- the lifetime gets resolved as `'_`
| |
| this lifetime flows to the output
|
= note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
|
64 | fn start(&self) -> (String, Container<'_, ApiSprout>) {
| +++
Loading