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
We had the following CI failure on Tokio's run-hyper-tests job:
error[E0425]: cannot find function `join_all` in module `future`
--> tests/support/mod.rs:477:26
|
477 | Box::pin(future::join_all(client_futures).map(|_| ()))
| ^^^^^^^^ not found in `future`
|
note: found an item that was configured out
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/future/mod.rs:81:5
|
81 | mod join_all;
| ^^^^^^^^
= note: the item is gated behind the `alloc` feature
note: found an item that was configured out
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-util-0.3.30/src/future/mod.rs:83:26
|
83 | pub use self::join_all::{join_all, JoinAll};
| ^^^^^^^^
= note: the item is gated behind the `alloc` feature
It seems like the futures-util crate has an alloc feature that should be enabled.
Most likely, it was previously enabled by some other dependency that no longer enables alloc.
The text was updated successfully, but these errors were encountered:
We had the following CI failure on Tokio's run-hyper-tests job:
It seems like the futures-util crate has an alloc feature that should be enabled.
Most likely, it was previously enabled by some other dependency that no longer enables alloc.
The text was updated successfully, but these errors were encountered: