-
Notifications
You must be signed in to change notification settings - Fork 206
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
Unfixable breakage on wasm32? #802
Comments
I'm also facing the issue that the newer version 1.13.1 fails to build, when renovate tries to update the lockfile |
@jvdwrf What's the build error you're seeing? |
I started to get build errors with wasm32 after upgrading to latest toolchain 1.84.
|
Ah, I think we should improve the error message you get there by adding a
|
I've added a more useful |
Hi, after updating to 1.13, my build for wasm32-unknown-unknown with js broke.
I already had the
js
feature enabled, however still I got the error thatgetrandom
should have thewasm_js
feature enabled.I already have rustflags for wasm set to
rustflags = ['--cfg', 'getrandom_backend="wasm_js"', '-Awarnings']
. This is working fine for rand 0.9 which I am using myself. It is only uuid that causes the compilation error for getrandom 0.3.I have tried a combination of using the
uuid/js
,uuid/getrandom
anduuid/rand
features, but the breakage stays. Downgrading to 1.12 fixes the issue for me. I am using uuid with featuresv4
andserde
.Any help would be much appreciated.
The text was updated successfully, but these errors were encountered: