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
Some of our dependencies are now using Rust edition 2024, and thus we had to bump the Rust toolchain in our workspace too.
However, it’s now impossible to use wasm-pack to target WASM, as it exits with this error:
Error: `cargo metadata` exited with an error: error: failed to parse manifest at `REDACTED`
Caused by:
feature `edition2024` is required
The package requires the Cargo feature called `edition2024`, but that feature is not stabilized in this version of Cargo (1.84.1 (66221abde 2024-11-19)).
Consider trying a newer version of Cargo (this may require the nightly release).
See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#edition-2024 for more information about the status of this feature.
I assume something must be updated in wasm-pack?
The text was updated successfully, but these errors were encountered:
CBenoit
changed the title
cargo metadata exited with an error: error: failed to parse manifest at /home/auroden/git/IronVNC/crates/ironvnc-web/Cargo.toml: feature edition2024 is requiredcargo metadata exited with an error: error: failed to parse manifest at /path/to/Cargo.toml: feature edition2024 is required
Mar 28, 2025
Some of our dependencies are now using Rust edition 2024, and thus we had to bump the Rust toolchain in our workspace too.
However, it’s now impossible to use
wasm-pack
to target WASM, as it exits with this error:I assume something must be updated in wasm-pack?
The text was updated successfully, but these errors were encountered: