Boscop
Boscop
I implemented `FromSql` and `ToSql` for geography points (using `postgis`) here: https://crates.io/crates/diesel-geography I'll add more types & functions over time, as I need them..
It also crashes Rack 1.1.6 on Win 10:  This is that part of the log: ``` [10.501 info src/window.cpp:72] Loaded SVG C:\Users\me\DOCUME~1/Rack/plugins-v1/moDllz/res/DispBttnL.svg [10.501 info src/window.cpp:72] Loaded SVG C:\Users\me\DOCUME~1/Rack/plugins-v1/moDllz/res/DispBttnR.svg [12.419...
@coderedart Thanks. And should I use `.with_profile(GlProfile::Core)` or not? :)
I just ran into this same issue.. @DylanRJohnston Btw, now there's wasm-bidngen 0.2.90. Why is it even pinned to a specific patch version? Doesn't it adhere to semver? @spigaz >...
Btw, a related question: How can I add gluon modules that should be are available for import, such that I specify them as string (.glu file content + module name),...
Yes please :) Maybe `let * = import! "std/list.glu"` or `let _ = import! "std/list.glu"`. I would prefer a syntax that doesn't require doubly nested braces :) It would be...
Thanks for answering all my issues so quickly :) Yes, I agree that this lib should not be as large and heavy as electron... 1. So the webview_dispatch function already...
(So by the time, when the callback gets called, the arg pointer may point to a deallocated object, if I do it the same way as with the external invoke...
Thanks. I mean it is possible to expose a Rust function like a C function, but not a closure because it's a struct with state under the hood. And for...
Ah yes, I'm already using user data to store the external invoke callback, but I could additionally store the scheduled dispatch closures, thanks for the idea.. Yes, in Rust you...