-
Notifications
You must be signed in to change notification settings - Fork 76
Description
Hello everyone,
I'd like to get feedback from users of zig-sqlite, if anyone happens to look at issues and sees this.
I recently worked on improving the build script in the use-upstream branch.
The main change is that we leverage the zig package manager to fetch the sqlite amalgamation instead of vendoring the source code in this repository.
I'm looking for people that can test their programs with this branch and report back if everything works fine; for people not using the loadable extension feature everything should be transparent.
If you are using loadable extensions however, there is a breaking change: you need to use the sqliteext module in your build script instead of sqlite.
To summarize:
- loadable extensions =>
sqliteext - everything else =>
sqlite
I'll wait a couple of weeks before merging the branch.