-
Notifications
You must be signed in to change notification settings - Fork 544
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 compiling for wasm32-unknown-emscripten target #519 #568
Conversation
error[E0428]: the name `inner` is defined multiple times --> /github/home/.cargo/registry/src/jackfan.us.kg-1ecc6299db9ec823/chrono-0.4.19/src/sys.rs:25:1 | 21 | mod inner; | ---------- previous definition of the module `inner` here ... 25 | mod inner; | ^^^^^^^^^^ `inner` redefined here | = note: `inner` must be defined only once in the type namespace of this module
If wasm32-unknown-emscripten is (Nevermind the fact that I submitted a PR to fix the same problem without looking whether somebody already did. Sorry for that.) |
Yes it is better. Emscripten has working implementations of |
Ah great, thanks! |
I encountered a bug while compiling for the wasm32-unknown-emscripten target (https://github.com/orion78fr/godot_keepass_rust_totp/runs/2742402148?check_suite_focus=true) and it seems I wasn't the only one : #519
I don't know if you really need (and how to do) a test for this as it seems that it haven't been caught by your CI.