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_core::core_reexport`
--> /home/leo60228/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.6/src/lib.rs:55:9
|
55 | pub use futures_core::core_reexport;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `core_reexport` in the root
This is because futures-core 0.3.7 removed core_reexport. This seems like it should be fine, since it's only used internally by futures, but mismatched subcrate versions can cause this issue.
The text was updated successfully, but these errors were encountered:
The following chain of events can lead to futures-util failing to build despite none of the steps being individually abnormal:
Here's a repo demonstrating this (check the commit history): https://github.com/leo60228/futures-test
This is because
futures-core
0.3.7 removedcore_reexport
. This seems like it should be fine, since it's only used internally byfutures
, but mismatched subcrate versions can cause this issue.The text was updated successfully, but these errors were encountered: