Carl Sverre

Results 45 comments of Carl Sverre
trafficstars

It also looks like sqlite added a dep on strspn (https://github.com/sqlite/sqlite/commit/028acd974f3c03c489dfaa02da618af99613cde7#diff-40aa21688f1ac58ddf8ef5f0f4e472e6075411f5c4f75b9c1d512b7e03a2cbabR849). I assume this needs to be added to the libc shim in https://github.com/trevyn/rusqlite/tree/wasm32-unknown-unknown/libsqlite3-sys/sqlite3/wasm32-unknown-unknown/libc? As for the new deps on...

@trevyn I was snooping around the sqlite changelog and found this gem in the [3.44.0] release: ``` 13. SQLite now performs run-time detection of whether or not the underlying hardware...

Thanks for testing it. Didn't realize they are just performing run-time checks. I did some research and have discovered that the wasi-sdk project releases libclang_rt as a standalone download here:...

Oh, just noticed that is the same file as https://github.com/jedisct1/libclang_rt.builtins-wasm32.a which you mentioned in https://github.com/rusqlite/rusqlite/pull/1010#issuecomment-1774097822... Apologies.

Ok after more testing, I can confirm that the following diff resolves all of the missing imports: ```diff diff --git a/libsqlite3-sys/build.rs b/libsqlite3-sys/build.rs index a6b99c3..55a7488 100644 --- a/libsqlite3-sys/build.rs +++ b/libsqlite3-sys/build.rs @@...

@trevyn I got something working here: https://github.com/trevyn/rusqlite/pull/1

This is a critical feature to be able to use Excalidraw for conference presentations as most conferences require slides to be submitted via PDF ahead of time. Eventually I hope...

I hit the same issue. After some investigation it seems the bug is in web-sys itself, and may be related to how wasm_bindgen passes `&[u8]` to the `Websocket.send()` on the...

Does Laravel have a change function already that works with other database backends or are you just suggesting that this pattern should be made into a nice function?

Gotcha. This is a great feature request. Thank you!