-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: cargo update
for Rust 1.80.0
#456
fix: cargo update
for Rust 1.80.0
#456
Conversation
Wait, this seems to break
This update might be overzealous. I think it might have updated some WASM thing. |
Hmm, this might be webpack/webpack#15566? |
oh, thank you for doing this! Will need to fiddle with the build, I think WASM stuff has changed a bit… |
I think I fixed the issues (needed a webpack upgrade too), but for your context you can do |
cd backend && cargo build
no longer works on Rust 1.80.0. Here's the error message:The note says this is due to an API change in Rust, and is fixed by running
cargo update
, so I did, and it did indeed fix the error.