Why does tokio
depends on mio
on wasm32-unknown-unknown
by no reason
#7315
-
To reproduce:
A lot of errors produced by
The full output was attached as At the same time,
Other information:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Tokio only depends on mio if you enable one of the features that require it, such as |
Beta Was this translation helpful? Give feedback.
-
Solved: |
Beta Was this translation helpful? Give feedback.
Solved:
feature unification merged features introduced by dependencies that were not enabled on
wasm32-unknown-unknown
whenresolver = "1"
was set. Setresolver = "2"
solved this problem.