Skip to content

feat!: use 'IntoFuture' trait to await futures directly without calling 'send' #368

feat!: use 'IntoFuture' trait to await futures directly without calling 'send'

feat!: use 'IntoFuture' trait to await futures directly without calling 'send' #368

Triggered via pull request March 16, 2025 07:02
Status Failure
Total duration 1m 4s
Artifacts

CI.yml

on: pull_request
Matrix: test
dependabot
dependabot
Fit to window
Zoom out
Zoom in

Annotations

9 errors and 3 warnings
docs
Process completed with exit code 101.
test (macos-latest, stable)
Process completed with exit code 101.
msrv
Process completed with exit code 1.
test (windows-latest, stable)
The operation was canceled.
test (windows-latest, stable)
The strategy configuration was canceled because "test.macos-latest_stable" failed
test (ubuntu-latest, stable)
The operation was canceled.
test (ubuntu-latest, stable)
The strategy configuration was canceled because "test.macos-latest_stable" failed
test (ubuntu-latest, nightly)
The operation was canceled.
test (ubuntu-latest, nightly)
The strategy configuration was canceled because "test.macos-latest_stable" failed
lint: src/endpoints/transactions/get.rs#L60
warning: the following explicit lifetimes could be elided: 'a --> src/endpoints/transactions/get.rs:60:6 | 60 | impl<'a, C> IntoFuture for Request<'a, C> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names help: elide the lifetimes | 60 - impl<'a, C> IntoFuture for Request<'a, C> 60 + impl<C> IntoFuture for Request<'_, C> |
lint: src/endpoints/transactions/list.rs#L85
warning: the following explicit lifetimes could be elided: 'a --> src/endpoints/transactions/list.rs:85:6 | 85 | impl<'a, C> IntoFuture for Request<'a, C> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names help: elide the lifetimes | 85 - impl<'a, C> IntoFuture for Request<'a, C> 85 + impl<C> IntoFuture for Request<'_, C> |
lint: src/endpoints/feed_items.rs#L121
warning: the following explicit lifetimes could be elided: 'a --> src/endpoints/feed_items.rs:121:10 | 121 | impl<'a, C> IntoFuture for Request<'a, C> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names note: the lint level is defined here --> src/lib.rs:8:9 | 8 | #![warn(clippy::pedantic)] | ^^^^^^^^^^^^^^^^ = note: `#[warn(clippy::elidable_lifetime_names)]` implied by `#[warn(clippy::pedantic)]` help: elide the lifetimes | 121 - impl<'a, C> IntoFuture for Request<'a, C> 121 + impl<C> IntoFuture for Request<'_, C> |