You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2023. It is now read-only.
On beta and nightly, the new clippy lint large futures gets triggered when attempting to use the session connection:
error: large future with a size of 21448 bytes
--> src/accessibility_connection.rs:291:16
|
291 | let session = zbus::Connection::session().await?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider `Box::pin` on it: `Box::pin(zbus::Connection::session())`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_futures
I'm not sure if this is really a problem worth fixing or not; I don't know how likely a stack overflow really is, but I thought it was worth mentioning.
You will need to use +nightly or +beta to see the lint.
The text was updated successfully, but these errors were encountered:
In GitLab by @TTWNO on Apr 20, 2023, 23:48
On beta and nightly, the new clippy lint large futures gets triggered when attempting to use the session connection:
I'm not sure if this is really a problem worth fixing or not; I don't know how likely a stack overflow really is, but I thought it was worth mentioning.
You will need to use
+nightly
or+beta
to see the lint.The text was updated successfully, but these errors were encountered: