2023-06-29 10:34:36 +02:00
|
|
|
[package]
|
|
|
|
name = "libsql-sys"
|
2025-03-20 11:50:39 +02:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
2023-06-29 10:34:36 +02:00
|
|
|
description = "Native bindings to libSQL"
|
|
|
|
keywords = ["libsql", "sqlite", "ffi", "bindings", "database"]
|
|
|
|
categories = ["external-ffi-bindings"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-12 13:01:33 +01:00
|
|
|
bytes = "1.5.0"
|
2025-03-20 12:26:52 +02:00
|
|
|
libsql-ffi = { workspace = true }
|
2023-07-05 10:38:25 +02:00
|
|
|
once_cell = "1.18.0"
|
2023-11-15 11:43:03 +01:00
|
|
|
rusqlite = { workspace = true, features = ["trace"], optional = true }
|
2023-07-05 10:38:25 +02:00
|
|
|
tracing = "0.1.37"
|
2023-12-05 11:51:48 +01:00
|
|
|
zerocopy = { version = "0.7.28", features = ["derive"] }
|
2023-10-20 10:13:45 +02:00
|
|
|
|
|
|
|
[features]
|
2023-11-15 11:43:03 +01:00
|
|
|
default = ["api"]
|
|
|
|
api = ["wal"]
|
|
|
|
wal = []
|
|
|
|
rusqlite = ["dep:rusqlite"]
|
2023-11-20 14:54:44 +01:00
|
|
|
wasmtime-bindings = ["libsql-ffi/wasmtime-bindings"]
|
2023-12-26 18:45:44 +01:00
|
|
|
unix-excl-vfs = []
|
2024-01-13 16:48:28 +01:00
|
|
|
encryption = ["libsql-ffi/multiple-ciphers"]
|
2025-01-16 21:09:39 -05:00
|
|
|
sqlean-extension-uuid = ["libsql-ffi/sqlean-extension-uuid"]
|
|
|
|
sqlean-extension-crypto = ["libsql-ffi/sqlean-extension-crypto"]
|
|
|
|
sqlean-extension-fuzzy = ["libsql-ffi/sqlean-extension-fuzzy"]
|
|
|
|
sqlean-extension-math = ["libsql-ffi/sqlean-extension-math"]
|
|
|
|
sqlean-extension-stats = ["libsql-ffi/sqlean-extension-stats"]
|
|
|
|
sqlean-extension-text = ["libsql-ffi/sqlean-extension-text"]
|
|
|
|
sqlean-extensions = ["libsql-ffi/sqlean-extensions"]
|