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
What crate(s) in this repo are involved in the problem?
tokio-console
What is the issue?
Fails to compile when using cargo install --locked tokio-console
How can the bug be reproduced?
Compiling tokio-console on Windows.
Logs, error output, etc
error[E0635]: unknown feature `stdsimd`
--> C:\Users\User\.cargo\registry\src\index.crates.io-6f17d22bba15001f\ahash-0.8.6\src/lib.rs:99:42
|
99 | #![cfg_attr(feature = "stdsimd", feature(stdsimd))]
| ^^^^^^^
For more information about this error, try `rustc --explain E0635`.
error: could not compile `ahash` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
error: failed to compile `tokio-console v0.1.11`, intermediate artifacts can be found at `C:\Users\USER\AppData\Local\Temp\cargo-install0n0qyL`.
Versions
Check your Cargo.toml files ;-)
Possible solution
I believe that bumping your dependencies (which also would bump their ahash dependency) may fix this
Additional context
No response
Would you like to work on fixing this bug?
no
The text was updated successfully, but these errors were encountered:
Hello, I am able to reproduce this issue on an Apple Silicon MacBook running MacOS 14.5 (23F79).
@hi-rustin The stdsimd feature got split into multiple sub-features (rust-lang/rust#48556), your version of Rust is out of date, as such you do not have this issue. Installing your version of the toolchain (1.78.0-aarch64-apple-darwin in my case) through rustup results in tokio-console compiling just fine. Please update your version of Rust through rustup in order to re-produce this issue.
What crate(s) in this repo are involved in the problem?
tokio-console
What is the issue?
Fails to compile when using
cargo install --locked tokio-console
How can the bug be reproduced?
Compiling
tokio-console
on Windows.Logs, error output, etc
Versions
Check your
Cargo.toml
files ;-)Possible solution
I believe that bumping your dependencies (which also would bump their
ahash
dependency) may fix thisAdditional context
No response
Would you like to work on fixing this bug?
no
The text was updated successfully, but these errors were encountered: