├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── VERSION ├── examples └── simple-search │ └── demo.sql ├── scripts └── publish-release.sh ├── sqlite-dist.toml ├── sqlite-rembed.h ├── src ├── clients.rs ├── clients_vtab.rs └── lib.rs └── test.sql /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env 3 | dist/ 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1-alpha.9 -------------------------------------------------------------------------------- /examples/simple-search/demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/examples/simple-search/demo.sql -------------------------------------------------------------------------------- /scripts/publish-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/scripts/publish-release.sh -------------------------------------------------------------------------------- /sqlite-dist.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/sqlite-dist.toml -------------------------------------------------------------------------------- /sqlite-rembed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/sqlite-rembed.h -------------------------------------------------------------------------------- /src/clients.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/src/clients.rs -------------------------------------------------------------------------------- /src/clients_vtab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/src/clients_vtab.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-rembed/HEAD/test.sql --------------------------------------------------------------------------------