Andrea Mancuso

Results 41 comments of Andrea Mancuso

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: ![image](https://github.com/rustwasm/wasm-bindgen/assets/19411542/c06a1aa0-adf8-4931-bbe3-7fc70c04082f) ![image](https://github.com/rustwasm/wasm-bindgen/assets/19411542/0f077ed7-8cef-4f02-8c03-e55b35820fb4) ![image](https://github.com/rustwasm/wasm-bindgen/assets/19411542/c4cc0aa3-44fe-408c-b485-51086dd721c2) ![image](https://github.com/rustwasm/wasm-bindgen/assets/19411542/88a311e1-9258-4547-a728-4d39b7b09b08) ![image](https://github.com/rustwasm/wasm-bindgen/assets/19411542/4d933811-8fdd-4ff6-b069-a288509e4327)

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: ![image](https://github.com/emilk/eframe_template/assets/19411542/1a5f869d-2822-4a89-8cb6-4d3fdb6f72e1) 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...