Andrea Mancuso
Andrea Mancuso
+1 for this feature, thanks!
Not ideal but this, after several hours of googling, trial/error, etc. (sadly not everyone is a Rust expert) is what I came up with:     
I got the following to compile: ``` use js_sys::{Array, Function}; struct Token Result>::new()); } #[wasm_bindgen] pub fn parse_bindgen(input: JsValue) -> Array { let input_as_string = input.as_string().unwrap(); let result = parse(input_as_string.as_str());...
Hello folks - are there plans to add support for emscripten - no Qt dependencies? I'd like to embed Maplibre Native with Dear Imgui + emscripten. Looks like this is...
+1 Normally (on 3.1.56) I'd use the following linker flags: `-O3 -pthread -lembind --embind-emit-tsd interface.d.ts -s ENVIRONMENT='web,worker' -s MODULARIZE=1 -s ALLOW_MEMORY_GROWTH=1 -s WASM=1 -s USE_GLFW=3 -s USE_WEBGPU=1 -s NO_FILESYSTEM=1 -s...
Thank you. I changed the linker flags to `-O3 -pthread -lembind --embind-emit-tsd interface.d.ts -lhtml5.js -lhtml5_webgl.js -s STRICT -s ENVIRONMENT='web,worker' -s MODULARIZE=1 -s ALLOW_MEMORY_GROWTH=1 -s WASM=1 -s USE_GLFW=3 -s USE_WEBGPU=1 -s...
I started using Imtui today for a new project. The vision is to use Dear Imgui across web, desktop, TUI... write the code once, run it anywhere! And if one...
I was also affected. Thanks for sharing. Sadly I am getting:  I think I'll try running it on my Ubuntu laptop over the weekend.
I wasn't. I'll try again ASAP, likely in the morning (I am based in the CEST time zone).
Good news. You were right: as I am new to the Rust world, I didn't realize I was meant to run `rustup target add x86_64-pc-windows-gnu`. I then ran `cargo build...