Results 228 comments of Fedor Logachev

I saw one macroquad-compatible library in progress that claims to support wasm, but did not tried it myself: https://github.com/Bombfuse/gamepad

Hjson looks interesting, however, I am not personally interested in it enough to implement the parser myself. Adding HJSON support looks very doable though - from first glance, HJSON looks...

I would recommend checking nanoserde's ron parser instead of serde's stuff - nanoserde is too different internally and most concepts would not map 1 by 1 from serde to nanoserde

sure, feel free to make a PR! the repo is a fork of makepad's tinyserde that used to be MIT/Apache2

usually `WaylandOnly` panics when invoked during an X session, but I guess this is not the case?

well, if you have xwayland anyway - you can just use LinuxBackend::X11 :) still a bug tho!

I do not know enough about musl to comment, but does it support dynamic loading? Quick google give me this, which is a bit suspicious: https://git.musl-libc.org/cgit/musl/tree/src/ldso/dlopen.c

ok, it was in dlink.c and according to documentation - musl can dlopen just fine. The only thing we should change to make it happen - use musl's dlopen. I...

Hmm, I found this: https://github.com/helix-editor/helix/pull/4818/files#diff-9a4f3e4537ebb7474452d131b0d969d89a51286f4269aac5ef268e712be17268R5 modifying .cargo/config.toml is not a perfect solution, but does it works?

quick test to check if their solution works: `RUSTFLAGS='-C target-feature=-crt-static' cargo run` on this example, I am very curious if it will fix it? ` > i will try testing...