Roman Kotelnikov
Roman Kotelnikov
@LukasMasuch thanks for looking into this! I generate UI from configuration that's a nested structure and would like to redraw it when new configuration is loaded. I'm now adding a...
@emilk could be **wasm-pack** version? I just tried on master [acb9e23](https://github.com/phaazon/luminance-rs/commit/acb9e2328780ed47e75fcd81caf72af3bd0528e2) with ```wasm-pack 0.10.2``` And `yarn serve` produces following output ``` ~/Projects/luminance-rs/examples/web$ yarn serve yarn run v1.22.18 $ webpack-dev-server 🧐...
I actually have a use-case for deriving `ToVariant` and `FromVariant` traits on types that are packaged with `no_std`. I use Godot as an interactive UI to talk to microcontroller and...
@Bromeon it is all in very WIP stage and Godot part is underdeveloped at the moment but I have it all in this repo https://github.com/wg-romank/quad Basically I have a shared...
Silly me, I had unconditional `no_std` at the top of the crate and that made the error pop up. Please disregard my message it works with this approach. Apologies for...