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
error[E0599]: no method named `as_raw` found for reference `&Waker` in the c
urrent scope
--> /home/sun/.cargo/registry/src/index.crates.io-6f17d22bba15001f/embassy-ex
ecutor-0.6.0/src/raw/waker.rs:53:35
|
53 | let raw_waker = waker.as_raw();
| ^^^^^^
|
help: there is a method `as_ref` with a similar name
|
53 | let raw_waker = waker.as_ref();
| ~~~~~~
For more information about this error, try `rustc --explain E0599`.
error: could not compile `embassy-executor` (lib) due to 1 previous error
ah apologies, it's the other way around. if you're using embassy-executor v0.6.0 from crates.io you're using a too new nightly. Either use an older nightly (before Sep 5th), or use embassy-executor from latest git.
This is the PR that made the breaking change in Rust rust-lang/rust#129919
this is the embassy-executor update #3316
seems to come from this PR #3059
The text was updated successfully, but these errors were encountered: