Right now the bindings are built at compile time for sqlite3ext-sys, usually it is preferred that libraries pre-built them and offer a feature flag to build them at runtime. This is what libsqlite3-sys does for example. It removes the need to support bindgen in your stack (which is a bit of a pain when doing cross-compilation).
Right now the bindings are built at compile time for
sqlite3ext-sys, usually it is preferred that libraries pre-built them and offer a feature flag to build them at runtime. This is whatlibsqlite3-sysdoes for example. It removes the need to support bindgen in your stack (which is a bit of a pain when doing cross-compilation).