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[E0432]: unresolved import `futures_macro::proc_macro_hack_join`
--> /home/cheng/.cargo/registry/src/github.1485827954.workers.dev-1ecc6299db9ec823/futures-util-0.3.4/src/async_await/join_mod.rs:78:13
|
78 | pub use futures_macro::join;
| ^^^^^^^^^^^^^^^^^^^ no `proc_macro_hack_join` in the root
error[E0432]: unresolved import `futures_macro::proc_macro_hack_try_join`
--> /home/cheng/.cargo/registry/src/github.1485827954.workers.dev-1ecc6299db9ec823/futures-util-0.3.4/src/async_await/join_mod.rs:81:13
|
81 | pub use futures_macro::try_join;
| ^^^^^^^^^^^^^^^^^^^^^^^ no `proc_macro_hack_try_join` in the root
error[E0432]: unresolved import `futures_macro::proc_macro_hack_select`
--> /home/cheng/.cargo/registry/src/github.1485827954.workers.dev-1ecc6299db9ec823/futures-util-0.3.4/src/async_await/select_mod.rs:316:13
|
316 | pub use futures_macro::select;
| ^^^^^^^^^^^^^^^^^^^^^ no `proc_macro_hack_select` in the root
error[E0432]: unresolved import `futures_macro::proc_macro_hack_select_biased`
--> /home/cheng/.cargo/registry/src/github.1485827954.workers.dev-1ecc6299db9ec823/futures-util-0.3.4/src/async_await/select_mod.rs:319:13
|
319 | pub use futures_macro::select_biased;
| ^^^^^^^^^^^^^^^-------------
| | |
| | help: a similar name exists in the module: `proc_macro_hack_select_internal`
| no `proc_macro_hack_select_biased` in the root
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0432`.
error: could not compile `futures-util`.
To learn more, run the command again with --verbose.
The text was updated successfully, but these errors were encountered:
This is probably because the futures-util and futures-macro versions are different. #2124 (comment)
Note that proc-macro is renamed to *_internal.
IIRC, it is not expected to use futures-macro directly, so this is probably fine...
(Maybe using = requirements would help to avoid some problems like #2061.)
The text was updated successfully, but these errors were encountered: