-
Notifications
You must be signed in to change notification settings - Fork 534
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
Utc::now() panicks when targetting WebAssembly #284
Comments
I've added initial support for |
Note that this is still unmerged. |
@quodlibetor @GuillaumeGomez are you able to help with this? Some projects targeting web assembly break because of this issue, looks like there's been a PR |
Fixed in #331. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a crate that uses chrono extensively, and I am trying to enable that crate to target WASM.
However, I've traced a
panic!
I'm getting to theUTC::now()
constructor fn. Specifically:I'm hoping a fix for this can be as easy as an extra version of
UTC::now()
for WASM, but I'm unsure.The text was updated successfully, but these errors were encountered: