You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get sqlite running in a rust-pdk plugin. I tried rusqlite but it fails to link. I'm assuming this is because it's trying to link the default C sqlite library.
I'm trying to get sqlite running in a rust-pdk plugin. I tried rusqlite but it fails to link. I'm assuming this is because it's trying to link the default C sqlite library.
I'm guessing what I need is something like https://github.com/ncruces/go-sqlite3 but for Rust instead of Go. Or maybe I could leverage the official sqlite3 wasm build (https://sqlite.org/wasm/doc/trunk/index.md), or eventually a native Rust implementation of sqlite.
Figured I would check here if there's any prior art before going too deep.