-
I've been working on an egui app for a few days now and I've run into an annoying hitch, So far, I've been targeting both native and wasm32 using eframe, with the goal of using the new JavaScript File System Access API to handle IO. Unfortunately for me, all the functions in it are async, which poses a problem for me since all my code is synchronous. I've also noticed that I'd ideally like to keep it synchronous, but sadly it seems that isn't possible. I saw this thread which suggests using Pollster but that ends up panicking with What should I do? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 14 replies
-
If you enable |
Beta Was this translation helpful? Give feedback.
-
Have you tried |
Beta Was this translation helpful? Give feedback.
Have you tried
wasm_bindgen_futures
?