mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-15 22:02:43 +00:00
* Remove `libsql_module` field from `sqlite3_vtab` * remove `libsql_module` struct Also removed the associated functions `libsql_create_module_v2`, `libsql_create_module` functions'. The `libsql_module` had a function `xPreparedSql` which is now moved to `sqlite_module`. The `sqlite_module` might get changed in the upstream, so added some padding space for our custom functions * generate ffi bindings * Add a github workflow to test crsqlite * fix crsqlite: remove `pLibsqlModule` references * Add tests for sqlite-vss extension
24 lines
478 B
TOML
24 lines
478 B
TOML
[package]
|
|
name = "libsql_rust_suite"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dev-dependencies]
|
|
libsql-sys = { path = "../../../libsql-sys", features = ["wal", "wasmtime-bindings", "rusqlite"], default_features = false }
|
|
|
|
itertools = "0.10"
|
|
tempfile = "3.3"
|
|
wabt = "0.10.0"
|
|
hex = "0.4.3"
|
|
|
|
[features]
|
|
default = []
|
|
udf = []
|
|
wasm = []
|
|
extensions = []
|
|
full = ["udf", "wasm"]
|