-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
Compiling to WASM #46
Comments
One option would be to just cfg out the uses of time. Would accept a patch for this. |
I gave it a try, putting all uses of But the use of
Taking the code as it is and trying to include the feature superficially actually ends up duplicating quite some code. Would you reconsider the |
This project seems to compile it as WASM: https://github.com/xfbs/diff.rs Related: I also would love to see a simple online text diffing tool similar to https://neil.fraser.name/software/diff_match_patch/demos/diff.html. |
Reporting back with the first draft of the playground. |
I was successfully run "insta" tests in the Chrome with this update #71. |
Hi! Thanks for the crate!
Goal
I was trying to do a web demo of
similar
. In particular, of theterminal-inline
example.Problem
The problem I faced is the use of the
std::time
module, which does not compile to Wasm.Solutions
One solution is to hide the related functionalities behind a feature.
The one I would prefer is to simply change for an implementation of
std::time
that works on Wasm, like theinstant
crate.It has both
Instance
andDuration
, which allsimilar
uses.References
instant
crateThe text was updated successfully, but these errors were encountered: